body {
    font-family: Arial, sans-serif;
}

.mega-menu {
    min-width: 900px;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card img {
    height: 220px;
    object-fit: cover;
}

.btn-danger {
    border-radius: 30px;
}

.hero img {
    height: 600px;
    object-fit: cover;
}

.hero-carousel { position: relative; background: #000; }
 :root{
    --red:#e4002b;
    --ink:#1a1a1a;
    --gray:#6b6b6b;
    --line:#e8e8e8;
    --panel:#fafafa;
    --header-h:72px;
  }
  *{box-sizing:border-box;margin:0;padding:0;}
  body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;color:var(--ink);background:#f3f3f3;}

 /* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --red:      #CC0000;
  --red-dark: #a80000;
  --ink:      #1a1a1a;
  --gray:     #6b7280;
  --line:     #e5e7eb;
  --panel:    #fafafa;
  --header-h: 64px;
  --drawer-w: 320px;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: #f5f5f5; color: var(--ink); }

/* ============================================================
   HEADER SHELL
   ============================================================ */
header {
  position: sticky;
  top: 0; left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
  z-index: 1000;
}

.bar {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 22px; height: 22px; fill: #fff; }
.logo-text { font-family: var(--font-head); font-size: 20px; letter-spacing: .5px; }
.logo-text strong { color: var(--ink); font-weight: 800; }
.logo-text span   { color: var(--red); font-weight: 800; }

/* ============================================================
   DESKTOP NAV
   ============================================================ */
nav.primary { display: flex; height: 100%; }
nav.primary > ul { display: flex; height: 100%; list-style: none; }
nav.primary > ul > li {
  position: relative;
  display: flex; align-items: center;
}
nav.primary > ul > li > a {
  display: flex; align-items: center; gap: 5px;
  height: 100%; padding: 0 14px;
  color: var(--ink); text-decoration: none;
  font-size: 13.5px; font-weight: 600; cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color .15s;
}
.chev {
  width: 6px; height: 6px;
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  transform: rotate(45deg);
  transition: transform .2s, border-color .15s;
  margin-top: -3px;
}
nav.primary > ul > li:hover > a,
nav.primary > ul > li.open > a { color: var(--red); border-bottom-color: var(--red); }
nav.primary > ul > li:hover > a .chev,
nav.primary > ul > li.open > a .chev {
  border-color: var(--red);
  transform: rotate(225deg);
  margin-top: 3px;
}

/* ── Small dropdowns ── */
li.has-dropdown .dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 210px; background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  border-top: 3px solid var(--red);
  display: none; padding: 6px 0; z-index: 998;
  border-radius: 0 0 6px 6px;
}
li.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 18px;
  font-size: 13px; font-weight: 600;
  color: var(--ink); text-decoration: none;
}
.dropdown a:hover { background: var(--panel); color: var(--red); padding-left: 22px; }

/* ── Products mega menu ── */
#productsLi .mega {
  position: fixed;
  top: var(--header-h); left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 22px 45px rgba(0,0,0,.14);
  border-top: 3px solid var(--red);
  display: none; z-index: 999;
}
#productsLi.open .mega { display: block; }

.mega-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; min-height: 360px;
}
.mega-col {
  border-right: 1px solid var(--line);
  padding: 16px 0;
  min-width: 220px;
  max-height: 540px; overflow-y: auto;
}
.mega-col:last-child { border-right: none; flex: 1; }

.cat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  font-size: 13.5px; font-weight: 700;
  cursor: pointer; color: var(--ink); text-decoration: none;
  border-left: 3px solid transparent;
  transition: background .12s, color .12s;
}
.cat-item .chev-r {
  width: 6px; height: 6px;
  border-right: 2px solid var(--gray);
  border-top: 2px solid var(--gray);
  transform: rotate(45deg);
}
.cat-item:hover, .cat-item.active {
  background: var(--panel); color: var(--red);
  border-left-color: var(--red);
}
.cat-item:hover .chev-r, .cat-item.active .chev-r { border-color: var(--red); }

.sub-item {
  display: block; padding: 10px 24px;
  font-size: 13px; font-weight: 600;
  color: var(--ink); text-decoration: none;
  border-left: 3px solid transparent;
}
.sub-item:hover, .sub-item.active {
  background: var(--panel); color: var(--red);
  border-left-color: var(--red);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px; padding: 20px 24px;
}
.product-card {
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 8px;
}
.thumb {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 8px;
  background: linear-gradient(135deg,#f3f3f3,#e8e8e8);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #aaa; font-weight: 600;
  overflow: hidden;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .p-name { font-size: 12.5px; font-weight: 700; }
.product-card:hover .p-name { color: var(--red); }

.view-all-row {
  grid-column: 1 / -1;
  font-size: 12.5px; font-weight: 700; color: var(--red);
  text-decoration: none; padding: 4px 0;
  display: flex; align-items: center; gap: 4px;
}
.view-all-row::after {
  content: '→';
}

/* ── RIGHT ICONS ── */
.right-icons { display: flex; align-items: center; gap: 14px; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: #fff;
  cursor: pointer; color: var(--ink);
  transition: border-color .15s, color .15s;
}
.icon-btn:hover { border-color: var(--red); color: var(--red); }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── Overlay ── */
.overlay {
  display: none;
  position: fixed; inset: 0; z-index: 1099;
  background: rgba(0,0,0,.45);
}
.overlay.active { display: block; }

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(var(--drawer-w), 100vw);
  height: 100%;
  background: #fff;
  z-index: 1100;
  display: flex; flex-direction: column;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.mobile-drawer.open { right: 0; }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer-logo { font-family: var(--font-head); font-size: 18px; font-weight: 800; }
.drawer-logo strong { color: var(--ink); }
.drawer-logo span   { color: var(--red); }

.close-btn {
  width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: #fff;
  font-size: 18px; color: var(--gray);
  transition: color .15s, border-color .15s;
}
.close-btn:hover { color: var(--red); border-color: var(--red); }

.drawer-body {
  flex: 1; overflow-y: auto;
  padding-bottom: 24px;
}

/* Drawer nav items */
.d-nav { list-style: none; }

/* Top-level item */
.d-nav > li > .d-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  font-size: 14px; font-weight: 700;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.d-nav > li > .d-link:hover { color: var(--red); background: var(--panel); }

.d-chev {
  width: 8px; height: 8px;
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  transform: rotate(45deg);
  transition: transform .25s;
  flex-shrink: 0;
}
.d-nav > li.d-open > .d-link .d-chev {
  transform: rotate(225deg);
  border-color: var(--red);
}
.d-nav > li.d-open > .d-link { color: var(--red); background: var(--panel); }

/* Accordion panel */
.d-panel {
  display: none;
  background: #fafafa;
  border-bottom: 1px solid var(--line);
}
.d-nav > li.d-open > .d-panel { display: block; }

/* Category inside accordion */
.d-cat-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  font-size: 13px; font-weight: 700;
  color: var(--gray); background: none; border: none;
  width: 100%; text-align: left; cursor: pointer;
  border-bottom: 1px solid var(--line);
}
.d-cat-btn:hover { color: var(--red); }
.d-cat-btn.d-cat-open { color: var(--red); }
.d-cat-btn.d-cat-open .d-chev { transform: rotate(225deg); border-color: var(--red); }

.d-sub-panel { display: none; }
.d-cat-btn.d-cat-open + .d-sub-panel { display: block; }

.d-sub-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 32px;
  font-size: 13px; font-weight: 600;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.d-sub-link:hover { color: var(--red); background: #f3f3f3; }

/* Products grid in drawer */
.d-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; padding: 14px 20px;
}
.d-prod-card {
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none; color: var(--ink);
}
.d-thumb {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 8px;
  background: linear-gradient(135deg,#f0f0f0,#e4e4e4);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: #bbb; font-weight: 600;
}
.d-prod-card .d-p-name { font-size: 12px; font-weight: 700; }
.d-prod-card:hover .d-p-name { color: var(--red); }

.d-view-all {
  display: block; text-align: center;
  padding: 10px;
  font-size: 12.5px; font-weight: 700; color: var(--red);
  text-decoration: none;
  background: #fff1f1; border-radius: 6px;
  margin: 0 20px 14px;
}

/* Plain links (no children) */
.d-plain-link {
  display: block; padding: 14px 20px;
  font-size: 14px; font-weight: 700;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.d-plain-link:hover { color: var(--red); background: var(--panel); }

/* Drawer bottom CTA */
.drawer-cta {
  flex-shrink: 0;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  display: flex; gap: 10px;
}
.btn-cta {
  flex: 1; padding: 12px;
  border-radius: 6px;
  font-size: 13px; font-weight: 700;
  text-align: center; text-decoration: none; cursor: pointer;
  border: none;
}
.btn-cta.primary { background: var(--red); color: #fff; }
.btn-cta.primary:hover { background: var(--red-dark); }
.btn-cta.outline { border: 1.5px solid var(--red); color: var(--red); background: #fff; }
.btn-cta.outline:hover { background: #fff1f1; }

/* ============================================================
   DEMO BODY CONTENT
   ============================================================ */
.demo-body {
  padding: 60px 24px;
  max-width: 900px; margin: 0 auto;
  text-align: center;
}
.demo-body h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800; letter-spacing: .5px;
  line-height: 1.1;
  color: var(--ink);
}
.demo-body h1 em { color: var(--red); font-style: normal; }
.demo-body p { color: var(--gray); margin-top: 14px; font-size: 15px; line-height: 1.6; }
.tag {
  display: inline-block; margin-bottom: 14px;
  padding: 5px 14px; border-radius: 20px;
  background: #fff1f1; color: var(--red);
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ─ Tablet: hide 2 rightmost nav items ─ */
@media (max-width: 1100px) {
  nav.primary > ul > li:nth-last-child(-n+2) { display: none; }
}

/* ─ Mobile: full hamburger mode ─ */
@media (max-width: 860px) {
  nav.primary { display: none; }
  .hamburger  { display: flex; }
  .icon-btn   { display: none; } /* hide search on smallest screens */
}

@media (max-width: 400px) {
  .bar { padding: 0 14px; }
  .logo-text { font-size: 17px; }
}

/* Hamburger → X animation when drawer open */
body.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    /* ══════════════════════════════════════════
       TOKENS
    ══════════════════════════════════════════ */
    :root {
      --red: #CC0000;
      --red-dark: #990000;
      --ink: #0A0A0A;
      --ink-soft: #1A1A1A;
      --silver: #C8C8C8;
      --silver-lt: #E8E8E8;
      --smoke: #F5F5F5;
      --white: #FFFFFF;
      --gold: #B8922A;

      --font-display: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;
      --font-ui: 'Inter', sans-serif;

      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-in: cubic-bezier(0.64, 0, 0.78, 0);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--ink);
      overflow-x: hidden;
    }

   

    /* ══════════════════════════════════════════
       HERO CAROUSEL
    ══════════════════════════════════════════ */
    .hero {
      position: relative;
      width: 100%;
      height: 100svh;
      min-height: 560px;
      max-height: 900px;
      overflow: hidden;
      background: var(--ink);
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.9s var(--ease-out);
    }

    .hero-slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      transition: transform 8s var(--ease-out);
    }

    .hero-slide.active .hero-bg {
      transform: scale(1);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg,
          rgba(0, 0, 0, 0.82) 0%,
          rgba(0, 0, 0, 0.45) 55%,
          rgba(0, 0, 0, 0.05) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 640px;
      padding: 0 48px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: right;
      gap: 10px;
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 18px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s 0.3s var(--ease-out), transform 0.6s 0.3s var(--ease-out);
    }

    .hero-eyebrow::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--red);
    }

    .hero-slide.active .hero-eyebrow {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(52px, 8vw, 96px);
      font-weight: 900;
      line-height: 0.92;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s 0.45s var(--ease-out), transform 0.7s 0.45s var(--ease-out);
    }

    .hero-slide.active .hero-title {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-title em {
      font-style: normal;
      color: var(--red);
    }

    .hero-sub {
      font-size: 15px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.65;
      max-width: 420px;
      margin-bottom: 36px;
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.7s 0.6s var(--ease-out), transform 0.7s 0.6s var(--ease-out);
    }

    .hero-slide.active .hero-sub {
      opacity: 1;
      transform: translateY(0);
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.6s 0.75s var(--ease-out), transform 0.6s 0.75s var(--ease-out);
    }

    .hero-slide.active .hero-actions {
      opacity: 1;
      transform: translateY(0);
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 14px 32px;
      background: var(--red);
      color: #fff;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-hero-primary:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      color: #fff;
    }

    .btn-hero-ghost {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 28px;
      background: transparent;
      color: #fff;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, 0.45);
      cursor: pointer;
      transition: border-color 0.25s, background 0.25s;
    }

    .btn-hero-ghost:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
    }

    /* slide indicators */
    .hero-indicators {
      position: absolute;
      bottom: 36px;
      left: 48px;
      z-index: 4;
      display: flex;
      gap: 10px;
    }

    .hero-dot {
      width: 28px;
      height: 3px;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: background 0.3s, width 0.3s;
    }

    .hero-dot.active {
      background: var(--red);
      width: 44px;
    }

    /* hero progress bar */
    .hero-progress {
      position: absolute;
      bottom: 0;
      left: 0;
      height: 3px;
      background: var(--red);
      z-index: 5;
      width: 0%;
      transition: width 0.1s linear;
    }

    /* scroll hint */
    .hero-scroll-hint {
      position: absolute;
      bottom: 34px;
      right: 48px;
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-family: var(--font-ui);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
    }

    .hero-scroll-hint .scroll-line {
      width: 1px;
      height: 40px;
      background: rgba(255, 255, 255, 0.3);
      position: relative;
      overflow: hidden;
    }

    .hero-scroll-hint .scroll-line::after {
      content: '';
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--red);
      animation: scrollAnim 1.8s ease-in-out infinite;
    }

    @keyframes scrollAnim {
      0% {
        top: -100%;
      }

      100% {
        top: 100%;
      }
    }

    /* ══════════════════════════════════════════
       MARQUEE STRIP
    ══════════════════════════════════════════ */
    .marquee-strip {
      background: var(--red);
      padding: 10px 0;
      overflow: hidden;
      position: relative;
    }

    .marquee-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: marqueeRoll 24s linear infinite;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 0 36px;
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #fff;
      white-space: nowrap;
    }

    .marquee-item .dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
    }

    @keyframes marqueeRoll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    /* ══════════════════════════════════════════
       SECTION COMMONS
    ══════════════════════════════════════════ */
    .section-eyebrow {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .section-eyebrow::before {
      content: '';
      width: 24px;
      height: 2px;
      background: var(--red);
      flex-shrink: 0;
    }

    .section-heading {
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 58px);
      font-weight: 900;
      line-height: 0.95;
      text-transform: uppercase;
      letter-spacing: -0.01em;
      color: var(--ink);
    }

    .section-heading em {
      font-style: normal;
      color: var(--red);
    }

    .section-lead {
      font-size: 15px;
      font-weight: 300;
      color: #555;
      line-height: 1.7;
      max-width: 520px;
    }

    /* reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-36px);
      transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(36px);
      transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .delay-1 {
      transition-delay: 0.1s !important;
    }

    .delay-2 {
      transition-delay: 0.2s !important;
    }

    .delay-3 {
      transition-delay: 0.3s !important;
    }

    .delay-4 {
      transition-delay: 0.4s !important;
    }

    .delay-5 {
      transition-delay: 0.5s !important;
    }

    .delay-6 {
      transition-delay: 0.6s !important;
    }

    /* ══════════════════════════════════════════
       FEATURED MODELS — dark card grid
    ══════════════════════════════════════════ */
    .models-section {
      background: var(--panel);
      padding: 96px 0 80px;
    }

    .models-section .section-heading {
      color: var(--ink);
    }

    .models-section .section-lead {
      color: rgba(7, 7, 7, 0.55);
    }

    .models-section .section-eyebrow {
      color: var(--red);
    }

    .models-section .section-eyebrow::before {
      background: var(--red);
    }

    .model-filter-tabs {
      display: flex;
      gap: 0;
      flex-wrap: wrap;
      border-bottom: 1px solid rgba(14, 13, 13, 0.1);
      margin-bottom: 48px;
    }

    .mft-btn {
      padding: 11px 24px;
      font-family: var(--font-ui);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(5, 1, 1, 0.45);
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s;
      margin-bottom: -1px;
    }

    .mft-btn:hover {
      color: rgba(80, 79, 79, 0.8);
    }

    .mft-btn.active {
      color: var(--red);
      border-bottom-color: var(--red);
    }

    .model-card {
      background: var(--ink-soft);
      border: 1px solid rgba(255, 255, 255, 0.07);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: border-color 0.3s, transform 0.3s var(--ease-out);
      display: flex;
      flex-direction: column;
    }

    .model-card:hover {
      border-color: rgba(204, 0, 0, 0.5);
      transform: translateY(-4px);
    }

    .model-card-img {
      aspect-ratio: 16/10;
      overflow: hidden;
      background: #111;
      position: relative;
    }

    .model-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
    }

    .model-card:hover .model-card-img img {
      transform: scale(1.06);
    }

    .model-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--red);
      color: #fff;
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      z-index: 2;
    }

    .model-card-body {
      padding: 22px 24px 26px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .model-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 0.02em;
      margin-bottom: 6px;
    }

    .model-family {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
    }

    .model-specs {
      display: flex;
      gap: 20px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .spec-item {
      display: flex;
      flex-direction: column;
    }

    .spec-val {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
    }

    .spec-lbl {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.4);
      text-transform: uppercase;
    }

    .model-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .model-price {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      color: var(--silver);
    }

    .model-price span {
      font-size: 12px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.3);
      margin-right: 4px;
    }

    .btn-model-explore {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }

    .btn-model-explore:hover {
      gap: 10px;
      color: var(--red);
    }

    .btn-model-explore svg {
      transition: transform 0.2s;
    }

    .btn-model-explore:hover svg {
      transform: translateX(3px);
    }

    /* ══════════════════════════════════════════
       WHY HONDA — stats + image split
    ══════════════════════════════════════════ */
    .why-section {
      padding: 100px 0;
      background: var(--white);
    }

    .why-img-col {
      position: relative;
    }

    .why-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 4/5;
      overflow: hidden;
      background: var(--smoke);
    }

    .why-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--ease-out);
    }

    .why-img-wrap:hover img {
      transform: scale(1.04);
    }

    .why-badge-float {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 140px;
      height: 140px;
      background: var(--red);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 2;
      box-shadow: 0 16px 40px rgba(204, 0, 0, 0.35);
    }

    .why-badge-float strong {
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }

    .why-badge-float small {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.75);
      text-align: center;
    }

    .why-content {
      padding-left: 48px;
    }

    .why-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin: 40px 0 44px;
      border: 1px solid var(--silver-lt);
    }

    .why-stat {
      padding: 24px 26px;
      border-right: 1px solid var(--silver-lt);
      border-bottom: 1px solid var(--silver-lt);
      position: relative;
      overflow: hidden;
    }

    .why-stat:nth-child(2n) {
      border-right: none;
    }

    .why-stat:nth-last-child(-n+2) {
      border-bottom: none;
    }

    .why-stat::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: width 0.4s var(--ease-out);
    }

    .why-stat:hover::after {
      width: 100%;
    }

    .why-stat-num {
      font-family: var(--font-display);
      font-size: 38px;
      font-weight: 900;
      color: var(--ink);
      line-height: 1;
    }

    .why-stat-num em {
      color: var(--red);
      font-style: normal;
    }

    .why-stat-lbl {
      font-family: var(--font-ui);
      font-size: 12px;
      font-weight: 400;
      color: #888;
      margin-top: 4px;
      letter-spacing: 0.04em;
    }

    .btn-primary-red {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 36px;
      background: var(--red);
      color: #fff;
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
      box-shadow: 0 8px 24px rgba(204, 0, 0, 0.25);
    }

    .btn-primary-red:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(204, 0, 0, 0.35);
      color: #fff;
    }

    /* ══════════════════════════════════════════
       EXPERIENCE TICKER — full bleed dark
    ══════════════════════════════════════════ */
    .experience-section {
      background: var(--panel);
      padding: 96px 0;
      position: relative;
      overflow: hidden;
    }

    .experience-section::before {
      content: 'HONDA';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-display);
      font-size: clamp(120px, 20vw, 220px);
      font-weight: 900;
      color: rgba(255, 255, 255, 0.025);
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: -0.04em;
    }

    .exp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, 0.08);
    }

    .exp-card {
      background: var(--ink);
      padding: 48px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
    }

    .exp-card:hover {
      background: #111;
    }

    .exp-icon {
      width: 52px;
      height: 52px;
      background: rgba(204, 0, 0, 0.12);
      border: 1px solid rgba(204, 0, 0, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      transition: background 0.3s;
    }

    .exp-card:hover .exp-icon {
      background: var(--red);
    }

    .exp-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--red);
      transition: stroke 0.3s;
    }

    .exp-card:hover .exp-icon svg {
      stroke: #fff;
    }

    .exp-title {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 12px;
    }

    .exp-desc {
      font-size: 14px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════
       TEST RIDE CTA — cinematic full-bleed
    ══════════════════════════════════════════ */
    .test-ride-section {
      position: relative;
      padding: 120px 0;
      overflow: hidden;
      background: #0a0a0a;
    }

    .test-ride-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
      filter: grayscale(0.3) brightness(0.35);
    }

    .test-ride-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 40%, transparent 100%);
    }

    .test-ride-content {
      position: relative;
      z-index: 2;
    }

    .test-ride-form {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 36px;
      position: relative;
      z-index: 2;
    }

    .test-ride-form .form-label {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 6px;
    }

    .test-ride-form .form-control,
    .test-ride-form .form-select {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 0;
      color: #fff;
      font-family: var(--font-body);
      font-size: 14px;
      padding: 12px 16px;
      transition: border-color 0.2s, background 0.2s;
    }

    .test-ride-form .form-control::placeholder {
      color: rgba(255, 255, 255, 0.3);
    }

    .test-ride-form .form-control:focus,
    .test-ride-form .form-select:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--red);
      box-shadow: none;
      color: #fff;
    }

    .test-ride-form .form-select option {
      background: #1a1a1a;
      color: #fff;
    }

    /* ══════════════════════════════════════════
       DEALER LOCATOR STRIP
    ══════════════════════════════════════════ */
    .dealer-section {
      background: var(--smoke);
      padding: 80px 0;
    }

    .dealer-card {
      background: var(--white);
      border: 1px solid var(--silver-lt);
      padding: 32px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }

    .dealer-card:hover {
      border-color: var(--red);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
      transform: translateY(-3px);
    }

    .dealer-icon {
      width: 48px;
      height: 48px;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .dealer-icon svg {
      width: 22px;
      height: 22px;
      stroke: #fff;
    }

    .dealer-card-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--ink);
      margin-bottom: 6px;
    }

    .dealer-card-desc {
      font-size: 13px;
      color: #777;
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .btn-dealer {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      text-decoration: none;
      transition: gap 0.2s;
    }

    .btn-dealer:hover {
      gap: 12px;
      color: var(--red);
    }

    /* ══════════════════════════════════════════
       NEWS & UPDATES
    ══════════════════════════════════════════ */
    .news-section {
      padding: 96px 0;
      background: var(--white);
    }

    .news-card {
      background: var(--white);
      border: 1px solid var(--silver-lt);
      overflow: hidden;
      cursor: pointer;
      transition: border-color 0.25s, transform 0.3s var(--ease-out);
    }

    .news-card:hover {
      border-color: var(--red);
      transform: translateY(-4px);
    }

    .news-img {
      aspect-ratio: 16/10;
      overflow: hidden;
      background: var(--smoke);
    }

    .news-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s var(--ease-out);
    }

    .news-card:hover .news-img img {
      transform: scale(1.07);
    }

    .news-body {
      padding: 22px 22px 26px;
    }

    .news-cat {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }

    .news-title {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--ink);
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .news-excerpt {
      font-size: 13px;
      color: #777;
      line-height: 1.65;
      margin-bottom: 16px;
    }

    .news-meta {
      font-family: var(--font-ui);
      font-size: 11px;
      color: #aaa;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .news-meta span {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    .site-footer {
      background: var(--ink);
      padding-top: 72px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 0.04em;
    }

    .footer-brand-name em {
      color: var(--red);
      font-style: normal;
    }

    .footer-tagline {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.65;
      max-width: 280px;
    }

    .footer-heading {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.35);
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color 0.2s, padding-left 0.2s;
      display: block;
    }

    .footer-links a:hover {
      color: var(--red);
      padding-left: 6px;
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin: 56px 0 28px;
    }

    .footer-bottom {
      padding-bottom: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-copy {
      font-family: var(--font-ui);
      font-size: 12px;
      color: rgba(255, 255, 255, 0.3);
    }

    .footer-socials {
      display: flex;
      gap: 14px;
    }

    .footer-social-btn {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      cursor: pointer;
    }

    .footer-social-btn:hover {
      background: var(--red);
      border-color: var(--red);
    }

    .footer-social-btn svg {
      width: 15px;
      height: 15px;
      stroke: rgba(255, 255, 255, 0.6);
    }

    .footer-social-btn:hover svg {
      stroke: #fff;
    }

    /* whatsapp FAB */
    .wa-fab {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 54px;
      height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
      z-index: 999;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }

    .wa-fab:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
    }

    .wa-fab svg {
      width: 26px;
      height: 26px;
      fill: #fff;
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 991.98px) {
      .why-content {
        padding-left: 0;
        margin-top: 64px;
      }

      .why-badge-float {
        right: 0;
        bottom: -16px;
        width: 110px;
        height: 110px;
      }

      .why-badge-float strong {
        font-size: 28px;
      }

      .exp-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 767.98px) {
      .hero-content {
        padding: 0 24px;
      }

      .hero-indicators {
        left: 24px;
        bottom: 24px;
      }

      .hero-scroll-hint {
        display: none;
      }

      .exp-grid {
        grid-template-columns: 1fr;
      }

      .why-stats {
        grid-template-columns: 1fr 1fr;
      }

      .test-ride-form {
        padding: 24px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .models-section {
        padding: 64px 0;
      }

      .news-section,
      .dealer-section,
      .why-section {
        padding: 64px 0;
      }

      .experience-section {
        padding: 64px 0;
      }

      .test-ride-section {
        padding: 80px 0;
      }
    }

    @media (max-width: 575.98px) {
      .hero-actions {
        flex-direction: column;
      }

      .btn-hero-primary,
      .btn-hero-ghost {
        text-align: center;
        justify-content: center;
      }

      .model-specs {
        gap: 14px;
      }
    }
  