
    :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)
      }
    }

    .ph {
      height: 70vh;
      min-height: 500px;
      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, .15) 100%), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?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: 520px;
      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;
    }

    /* FILTER */
    .tf {
      background: var(--carbon);
      padding: 60px 6% 0;
    }

    .tf-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .tf-tabs {
      display: flex;
      gap: 3px;
      flex-wrap: wrap;
    }

    .tt {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 12px 22px;
      background: var(--steel);
      border: none;
      color: rgba(245, 240, 235, .5);
      cursor: pointer;
      clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
      transition: all .3s;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .tt:hover {
      background: #1e1e1e;
      color: var(--white);
    }

    .tt.on {
      background: var(--fire);
      color: white;
    }

    .tf-sort {
      background: var(--steel);
      border: 1px solid rgba(255, 255, 255, .1);
      padding: 12px 16px;
      color: var(--white);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      outline: none;
      cursor: pointer;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    }

    .tf-sort option {
      background: var(--steel);
    }

    /* TOURS GRID */
    .ts {
      background: var(--carbon);
      padding: 50px 6% 120px;
    }

    .tg {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }

    .tc {
      background: var(--steel);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform .4s;
    }

    .tc:hover {
      transform: translateY(-7px);
    }

    .tc.feat {
      grid-column: span 2;
    }

    .ti-w {
      position: relative;
      overflow: hidden;
    }

    .ti {
      width: 100%;
      aspect-ratio: 16/10;
      object-fit: cover;
      filter: brightness(.65);
      transition: transform .6s, filter .4s;
      display: block;
    }

    .tc.feat .ti {
      aspect-ratio: 16/9;
    }

    .tc:hover .ti {
      transform: scale(1.06);
      filter: brightness(.45);
    }

    .tdiff {
      position: absolute;
      top: 16px;
      left: 16px;
      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%);
    }

    .d-e {
      background: #22c55e;
    }

    .d-m {
      background: var(--amber);
    }

    .d-h {
      background: var(--fire);
    }

    .d-x {
      background: #7c3aed;
    }

    .tdur {
      position: absolute;
      bottom: 16px;
      right: 16px;
      background: rgba(0, 0, 0, .75);
      backdrop-filter: blur(4px);
      padding: 5px 12px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: white;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .tb {
      padding: 26px 28px;
    }

    .t-meta {
      display: flex;
      gap: 14px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .t-meta span {
      font-size: .72rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .t-meta i {
      font-size: .6rem;
      color: var(--fire);
    }

    .tc h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.2rem;
      letter-spacing: .5px;
      margin-bottom: 10px;
      transition: color .3s;
      line-height: 1.25;
    }

    .tc.feat h3 {
      font-size: 1.5rem;
    }

    .tc:hover h3 {
      color: var(--fire);
    }

    .tc p {
      font-size: .83rem;
      line-height: 1.65;
      color: rgba(245, 240, 235, .45);
      margin-bottom: 18px;
    }

    .t-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, .06);
    }

    .t-price {
      font-family: 'Bebas Neue', cursive;
      font-size: 1.5rem;
      color: var(--fire);
      letter-spacing: 1px;
    }

    .t-price small {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .62rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .bb {
      background: var(--fire);
      color: white;
      border: none;
      padding: 10px 22px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .75rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
      transition: background .3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .bb:hover {
      background: var(--amber);
    }

    .t-chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 14px;
    }

    .chip {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 10px;
      background: rgba(255, 69, 0, .1);
      color: var(--fire);
      clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
    }

    /* WHY */
    .ws {
      background: var(--black);
      background-image: url('https://images.unsplash.com/photo-1551524164-687a55dd1126?w=1800');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 100px 6%;
      position: relative;
    }

    .ws::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(8, 8, 8, .88);
      z-index: 0;
    }

    .ws>* {
      position: relative;
      z-index: 1;
    }

    .wg {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
      margin-top: 50px;
    }

    .wc {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .07);
      padding: 40px 30px;
      transition: all .4s;
    }

    .wc:hover {
      background: rgba(255, 69, 0, .07);
      border-color: rgba(255, 69, 0, .3);
      transform: translateY(-5px);
    }

    .wc-i {
      font-size: 2rem;
      color: var(--fire);
      margin-bottom: 20px;
    }

    .wc h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .wc p {
      font-size: .84rem;
      color: rgba(245, 240, 235, .45);
      line-height: 1.7;
    }

    /* CUSTOM */
    .cs {
      background: var(--white);
      color: var(--black);
      padding: 100px 6%;
      position: relative;
    }

    .cs::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(245, 240, 235, .96);
    }

    .cs>* {
      position: relative;
      z-index: 1;
    }

    .cg {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .cl h2 {
      font-family: 'Bebas Neue', cursive;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      line-height: .95;
      letter-spacing: 2px;
      margin-bottom: 20px;
      color: var(--black);
    }

    .cl h2 em {
      font-style: normal;
      -webkit-text-stroke: 2px var(--fire);
      color: transparent;
    }

    .cl p {
      font-size: .95rem;
      line-height: 1.8;
      color: rgba(0, 0, 0, .55);
      margin-bottom: 28px;
    }

    .bp {
      background: var(--fire);
      color: white;
      padding: 16px 38px;
      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;
    }

    .bp:hover {
      background: var(--amber);
    }

    .csteps {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .cst {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .csn {
      width: 36px;
      height: 36px;
      background: var(--fire);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', cursive;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .cst h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--black);
      margin-bottom: 4px;
    }

    .cst p {
      font-size: .82rem;
      color: rgba(0, 0, 0, .5);
      line-height: 1.5;
    }

    /* 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) {
      .tg {
        grid-template-columns: 1fr;
      }

      .tc.feat {
        grid-column: span 1;
      }

      .wg {
        grid-template-columns: 1fr 1fr;
      }

      .cg {
        grid-template-columns: 1fr;
      }

      .fg {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .cta {
        justify-content: center;
        text-align: center;
      }
    }

    @media(max-width:600px) {
      .wg {
        grid-template-columns: 1fr;
      }

      .fg {
        grid-template-columns: 1fr;
      }
    }
