
    :root {
      --fire: #FF4500;
      --amber: #FF8C00;
      --white: #F5F0EB;
      --black: #080808;
      --carbon: #111111;
      --steel: #1C1C1E;
      --muted: #888;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      overflow-x: hidden;
      cursor: none;
    }

    .cursor {
      width: 12px;
      height: 12px;
      background: var(--fire);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      transition: width .2s, height .2s;
      mix-blend-mode: screen;
    }

    .cursor-ring {
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(255, 69, 0, .5);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 99998;
      transform: translate(-50%, -50%);
      transition: left .12s, top .12s, width .2s, height .2s;
    }

    #pb {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--fire), var(--amber));
      z-index: 9999;
      width: 0%;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      height: 75px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 5%;
      z-index: 1000;
      transition: background .5s;
    }

    header.sc {
      background: rgba(8, 8, 8, .92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255, 69, 0, .15);
    }

    .logo {
      font-family: 'Bebas Neue', cursive;
      font-size: 2rem;
      letter-spacing: 3px;
      color: var(--white);
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo span {
      color: var(--fire);
    }

    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: .78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(245, 240, 235, .6);
      text-decoration: none;
      transition: color .3s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--fire);
      transition: width .3s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--white);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .menu-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--fire);
      color: white;
      border: none;
      padding: 10px 22px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      transition: background .3s;
    }

    .menu-btn:hover {
      background: var(--amber);
    }

    .hl {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .hl div {
      width: 16px;
      height: 2px;
      background: white;
      border-radius: 1px;
    }

    .so {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .75);
      backdrop-filter: blur(4px);
      display: none;
      z-index: 1500;
    }

    .so.active {
      display: block;
    }

    .sb {
      position: fixed;
      top: 0;
      right: -350px;
      width: 320px;
      height: 100vh;
      background: var(--carbon);
      z-index: 2000;
      transition: right .5s cubic-bezier(.16, 1, .3, 1);
      border-left: 1px solid rgba(255, 69, 0, .2);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .sb.active {
      right: 0;
    }

    .sb-top {
      background: var(--fire);
      padding: 30px 35px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .sb-logo {
      font-family: 'Bebas Neue', cursive;
      font-size: 1.8rem;
      letter-spacing: 3px;
      color: white;
    }

    .cb {
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, .15);
      border-radius: 50%;
      border: none;
    }

    .cb i {
      color: white;
    }

    .sb-body {
      padding: 40px 35px;
      flex: 1;
    }

    .sb-nav {
      list-style: none;
    }

    .sb-nav li {
      margin-bottom: 5px;
    }

    .sb-nav a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(245, 240, 235, .6);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .05);
      transition: all .3s;
    }

    .sb-nav a i {
      color: var(--fire);
      width: 18px;
      font-size: .85rem;
    }

    .sb-nav a:hover {
      color: var(--white);
      padding-left: 8px;
    }

    .sb-soc {
      padding: 25px 35px 35px;
      display: flex;
      gap: 14px;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .sb-soc a {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 69, 0, .4);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: var(--fire);
      text-decoration: none;
      font-size: .85rem;
      transition: all .3s;
    }

    .sb-soc a:hover {
      background: var(--fire);
      color: white;
    }

    .stag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--fire);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .stag::before {
      content: '';
      width: 30px;
      height: 2px;
      background: var(--fire);
    }

    .rv {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .8s, transform .8s;
    }

    .rv.vis {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fu {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* HERO */
    .ph {
      height: 60vh;
      min-height: 440px;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 0 6% 90px;
      overflow: hidden;
    }

    .ph-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, .5) 50%, rgba(8, 8, 8, .2) 100%), url('https://images.unsplash.com/photo-1609630875171-b1321377ee65?w=1800') center/cover no-repeat;
    }

    .ph-c {
      position: relative;
      z-index: 2;
    }

    .bc {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(245, 240, 235, .4);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: fu .7s ease .3s both;
    }

    .bc a {
      color: var(--fire);
      text-decoration: none;
    }

    .bc i {
      font-size: .55rem;
      color: rgba(245, 240, 235, .3);
    }

    .ph h1 {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(4rem, 9vw, 8rem);
      line-height: .92;
      letter-spacing: 3px;
      animation: fu .7s ease .5s both;
    }

    .ph h1 em {
      font-style: normal;
      -webkit-text-stroke: 2px var(--fire);
      color: transparent;
    }

    .ph p {
      margin-top: 20px;
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.7;
      color: rgba(245, 240, 235, .5);
      max-width: 500px;
      animation: fu .7s ease .7s both;
    }

    .fog {
      position: absolute;
      bottom: -30px;
      left: 0;
      width: 100%;
      height: 120px;
      background: radial-gradient(ellipse 80% 100% at 50% 100%, var(--black) 50%, transparent 100%);
      z-index: 3;
      pointer-events: none;
    }

    .de {
      position: relative;
      z-index: 2;
      margin-top: -60px;
      height: 80px;
      background: var(--carbon);
      clip-path: polygon(0 60%, 8% 20%, 15% 55%, 22% 10%, 30% 50%, 38% 5%, 45% 45%, 52% 15%, 60% 55%, 67% 8%, 75% 48%, 82% 18%, 90% 52%, 96% 22%, 100% 50%, 100% 100%, 0 100%);
      pointer-events: none;
    }

    /* CATEGORY TABS */
    .cat-section {
      background: var(--carbon);
      padding: 60px 6% 0;
    }

    .cat-tabs {
      display: flex;
      gap: 3px;
      flex-wrap: wrap;
    }

    .ct {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 14px 28px;
      background: var(--steel);
      border: none;
      color: rgba(245, 240, 235, .5);
      cursor: pointer;
      transition: all .3s;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .ct:hover {
      background: #1e1e1e;
      color: var(--white);
    }

    .ct.on {
      background: var(--fire);
      color: white;
    }

    .ct i {
      font-size: .8rem;
    }

    /* RATES GRID */
    .rates-section {
      background: var(--carbon);
      padding: 50px 6% 120px;
    }

    .rates-intro {
      max-width: 700px;
      margin-bottom: 60px;
    }

    .rates-intro h2 {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(2.5rem, 5vw, 4rem);
      letter-spacing: 2px;
      margin-bottom: 16px;
    }

    .rates-intro h2 span {
      color: var(--fire);
    }

    .rates-intro p {
      font-size: .92rem;
      line-height: 1.8;
      color: rgba(245, 240, 235, .5);
    }

    .bike-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }

    .bike-card {
      background: var(--steel);
      position: relative;
      overflow: hidden;
      transition: all .4s;
    }

    .bike-card:hover {
      transform: translateY(-6px);
    }

    .bike-card.featured {
      grid-column: span 1;
    }

    .bike-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      filter: brightness(.7);
      transition: transform .6s, filter .4s;
      display: block;
    }

    .bike-card:hover .bike-img {
      transform: scale(1.06);
      filter: brightness(.5);
    }

    .bike-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--fire);
      padding: 5px 14px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .62rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: white;
      clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
    }

    .bike-tag.pop {
      background: var(--amber);
    }

    .bike-body {
      padding: 28px;
    }

    .bike-name {
      font-family: 'Bebas Neue', cursive;
      font-size: 1.6rem;
      letter-spacing: 1.5px;
      margin-bottom: 6px;
    }

    .bike-sub {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 18px;
    }

    .bike-specs {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .bike-spec {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: .78rem;
      color: rgba(245, 240, 235, .5);
    }

    .bike-spec i {
      color: var(--fire);
      font-size: .7rem;
    }

    .rate-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 22px;
    }

    .rate-table th {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--muted);
      padding: 8px 0;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .rate-table td {
      padding: 9px 0;
      font-size: .85rem;
      color: rgba(245, 240, 235, .7);
      border-bottom: 1px solid rgba(255, 255, 255, .04);
    }

    .rate-table td.price {
      font-family: 'Bebas Neue', cursive;
      font-size: 1.3rem;
      color: var(--fire);
      letter-spacing: 1px;
    }

    .rate-table tr:last-child td {
      border-bottom: none;
    }

    .book-btn {
      width: 100%;
      background: var(--fire);
      color: white;
      border: none;
      padding: 13px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
      transition: background .3s, transform .2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
    }

    .book-btn:hover {
      background: var(--amber);
      transform: scale(1.02);
    }

    /* INCLUDES SECTION */
    .inc-section {
      background: var(--black);
      background-image: url('https://images.unsplash.com/photo-1568772585407-9361f9bf3a87?w=1800');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 100px 6%;
      position: relative;
    }

    .inc-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(8, 8, 8, .9);
      z-index: 0;
    }

    .inc-section>* {
      position: relative;
      z-index: 1;
    }

    .inc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3px;
      margin-top: 50px;
    }

    .inc-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .07);
      padding: 35px 28px;
      transition: all .4s;
    }

    .inc-card:hover {
      background: rgba(255, 69, 0, .06);
      border-color: rgba(255, 69, 0, .3);
      transform: translateY(-5px);
    }

    .inc-icon {
      font-size: 1.8rem;
      color: var(--fire);
      margin-bottom: 18px;
    }

    .inc-card h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .inc-card p {
      font-size: .82rem;
      color: rgba(245, 240, 235, .45);
      line-height: 1.6;
    }

    .inc-card.no .inc-icon {
      color: rgba(245, 240, 235, .2);
    }

    .inc-card.no h4 {
      color: rgba(245, 240, 235, .4);
    }

    /* POLICY */
    .policy-section {
      background: var(--carbon);
      padding: 100px 6%;
    }

    .policy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .policy-left h2 {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(2.5rem, 4vw, 3.8rem);
      letter-spacing: 2px;
      margin-bottom: 8px;
    }

    .policy-left h2 span {
      color: var(--fire);
    }

    .policy-left p {
      font-size: .9rem;
      color: rgba(245, 240, 235, .5);
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .policy-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .policy-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .87rem;
      color: rgba(245, 240, 235, .65);
      line-height: 1.6;
    }

    .policy-list li i {
      color: var(--fire);
      margin-top: 3px;
      flex-shrink: 0;
      font-size: .85rem;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .faq-item {
      background: var(--steel);
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      background: transparent;
      border: none;
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .9rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--white);
      text-align: left;
      transition: background .3s;
    }

    .faq-q:hover {
      background: rgba(255, 69, 0, .08);
    }

    .faq-q i {
      color: var(--fire);
      transition: transform .3s;
      flex-shrink: 0;
    }

    .faq-q.open i {
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s;
    }

    .faq-a.open {
      max-height: 300px;
      padding: 0 22px 18px;
    }

    .faq-a p {
      font-size: .85rem;
      color: rgba(245, 240, 235, .5);
      line-height: 1.7;
    }

    /* CTA + FOOTER */
    .cta {
      background: var(--fire);
      padding: 80px 6%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .cta h2 {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(2rem, 4vw, 3.5rem);
      color: white;
      letter-spacing: 2px;
    }

    .cta p {
      color: rgba(255, 255, 255, .7);
      margin-top: 8px;
      font-size: .95rem;
    }

    .bw {
      background: white;
      color: var(--fire);
      padding: 16px 40px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
      transition: all .3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .bw:hover {
      background: var(--black);
      color: white;
    }

    footer {
      background: var(--carbon);
      border-top: 1px solid rgba(255, 69, 0, .2);
      padding: 80px 6% 0;
    }

    .fg {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 60px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .fb p {
      font-size: .88rem;
      color: rgba(245, 240, 235, .45);
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 280px;
      margin-top: 16px;
    }

    .fso {
      display: flex;
      gap: 10px;
    }

    .fso a {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(245, 240, 235, .5);
      text-decoration: none;
      font-size: .85rem;
      transition: all .3s;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }

    .fso a:hover {
      background: var(--fire);
      border-color: var(--fire);
      color: white;
    }

    .fc h5 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--fire);
      margin-bottom: 24px;
    }

    .fc ul {
      list-style: none;
    }

    .fc ul li {
      margin-bottom: 12px;
    }

    .fc ul a {
      font-size: .87rem;
      color: rgba(245, 240, 235, .45);
      text-decoration: none;
      transition: color .3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .fc ul a i {
      font-size: .65rem;
      color: var(--fire);
      opacity: 0;
      transition: opacity .3s;
    }

    .fc ul a:hover {
      color: var(--white);
    }

    .fc ul a:hover i {
      opacity: 1;
    }

    .fci {
      display: flex;
      gap: 12px;
      margin-bottom: 18px;
      align-items: flex-start;
    }

    .fci i {
      color: var(--fire);
      font-size: .9rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .fci span {
      font-size: .85rem;
      color: rgba(245, 240, 235, .45);
      line-height: 1.5;
    }

    .fb2 {
      padding: 24px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .fb2 p {
      font-size: .77rem;
      color: rgba(245, 240, 235, .25);
    }

    .fb2l {
      display: flex;
      gap: 20px;
    }

    .fb2l a {
      font-size: .77rem;
      color: rgba(245, 240, 235, .25);
      text-decoration: none;
      transition: color .3s;
    }

    .fb2l a:hover {
      color: var(--fire);
    }

    @media(max-width:1100px) {
      .nav-links {
        display: none;
      }
    }

    @media(max-width:960px) {
      .bike-grid {
        grid-template-columns: 1fr 1fr;
      }

      .inc-grid {
        grid-template-columns: 1fr 1fr;
      }

      .policy-grid {
        grid-template-columns: 1fr;
      }

      .fg {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .cta {
        justify-content: center;
        text-align: center;
      }
    }

    @media(max-width:600px) {
      .bike-grid {
        grid-template-columns: 1fr;
      }

      .inc-grid {
        grid-template-columns: 1fr 1fr;
      }

      .fg {
        grid-template-columns: 1fr;
      }
    }
