    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --bg: #faf8f5;
      --bg2: #f2ede6;
      --bg3: #e8e1d8;
      --orange: #e05500;
      --orange-l: #ff6a1a;
      --dark: #1a1208;
      --text: #1a1208;
      --muted: #6b6055;
      --border: #d9d0c4;
      --white: #ffffff;
      --fd: 'Bebas Neue', sans-serif;
      --fb: 'Barlow', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--fb);
      overflow-x: hidden;
      cursor: none;
    }

    /* CURSOR */
    #cur {
      width: 10px;
      height: 10px;
      background: var(--orange);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9999;
      transition: transform .12s;
    }

    #ring {
      width: 32px;
      height: 32px;
      border: 1.5px solid rgba(224, 85, 0, .45);
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transition: all .14s;
    }

    /* TOP BAR */
    #topbar {
      background: var(--dark);
      color: rgba(255, 255, 255, .6);
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 8px 56px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    #topbar a {
      color: rgba(255, 255, 255, .6);
      text-decoration: none;
      transition: color .2s;
    }

    #topbar a:hover {
      color: var(--orange-l);
    }

    .tb-l,
    .tb-r {
      display: flex;
      gap: 28px;
      align-items: center;
    }

    .tb-i {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 900;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
      transition: box-shadow .3s;
    }

    header.up {
      box-shadow: 0 4px 36px rgba(0, 0, 0, .1);
    }

    .hdr {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 56px;
      height: 72px;
    }

    /* LOGO */
    .logo {
      display: flex;
      align-items: center;
      gap: 13px;
      text-decoration: none;
    }

    .logo-icon {
      width: 60px;
      height: 60px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    }

    .logo-icon svg {
      width: 24px;
      height: 24px;
      fill: #fff;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .logo-name {
      font-family: var(--fd);
      font-size: 1.7rem;
      letter-spacing: .07em;
      color: var(--dark);
    }

    .logo-name b {
      color: var(--orange);
    }

    .logo-sub {
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 2px;
    }

    /* NAV */
    .nav {
      display: flex;
      list-style: none;
      gap: 2px;
      align-items: center;
    }

    .nav>li {
      position: relative;
    }

    .nav>li>a {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      padding: 10px 12px;
      transition: color .2s, background .2s;
    }

    .nav>li>a:hover,
    .nav>li>a.active {
      color: var(--orange);
      background: rgba(224, 85, 0, .06);
    }

    .nav>li>a .arr {
      font-size: .46rem;
      transition: transform .2s;
    }

    .nav>li:hover>a .arr {
      transform: rotate(180deg);
    }

    /* DROPDOWN */
    .drop {
      display: none;
      position: absolute;
      top: calc(100% + 2px);
      left: 0;
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: 0 14px 44px rgba(0, 0, 0, .11);
      min-width: 195px;
      z-index: 999;
    }

    .nav>li:hover .drop {
      display: block;
    }

    .drop a {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 10px 18px;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      border-bottom: 1px solid var(--bg2);
      transition: background .18s, color .18s;
    }

    .drop a:last-child {
      border-bottom: none;
    }

    .drop a:hover {
      background: var(--bg2);
      color: var(--orange);
    }

    /* HEADER ACTIONS */
    .h-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn-call {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      padding: 8px 13px;
      border: 1.5px solid var(--border);
      transition: all .2s;
    }

    .btn-call:hover {
      border-color: var(--orange);
      color: var(--orange);
    }

    .btn-q {
      font-family: var(--fb);
      font-size: .75rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      background: var(--orange);
      color: #fff;
      padding: 11px 24px;
      text-decoration: none;
      clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
      transition: background .2s, transform .2s;
    }

    .btn-q:hover {
      background: var(--orange-l);
      transform: scale(1.03);
    }

    .hburg {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: none;
      padding: 4px;
      background: none;
      border: none;
    }

    .hburg span {
      width: 24px;
      height: 2px;
      background: var(--dark);
      transition: all .3s;
    }

    /* HERO */
    #hero {
      min-height: calc(100vh - 108px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      position: relative;
    }

    .h-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 60px 80px 56px;
      position: relative;
      z-index: 2;
      background: var(--bg);
    }

    .h-left::after {
      content: '';
      position: absolute;
      top: 0;
      right: -55px;
      bottom: 0;
      width: 110px;
      background: var(--bg);
      clip-path: polygon(0 0, 40% 0, 100% 100%, 0 100%);
      z-index: 3;
    }

    .h-eye {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 20px;
    }

    .h-eye::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--orange);
    }

    .h-title {
      font-family: var(--fd);
      font-size: clamp(3.6rem, 7vw, 6.8rem);
      line-height: .92;
      letter-spacing: .02em;
      color: var(--dark);
      margin-bottom: 26px;
    }

    .h-title em {
      font-style: normal;
      color: var(--orange);
    }

    .h-title .out {
      -webkit-text-stroke: 2px var(--dark);
      color: transparent;
    }

    .h-desc {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.82;
      color: var(--muted);
      max-width: 440px;
      margin-bottom: 38px;
    }

    .h-btns {
      display: flex;
      gap: 14px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-p {
      font-family: var(--fb);
      font-weight: 800;
      font-size: .82rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      background: var(--orange);
      color: #fff;
      padding: 14px 34px;
      text-decoration: none;
      clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
      transition: background .2s, transform .2s;
      display: inline-block;
    }

    .btn-p:hover {
      background: var(--orange-l);
      transform: scale(1.03);
    }

    .btn-g {
      font-family: var(--fb);
      font-weight: 600;
      font-size: .78rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--dark);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color .2s;
    }

    .btn-g:hover {
      color: var(--orange);
    }

    .h-trust {
      display: flex;
      gap: 26px;
      align-items: center;
      margin-top: 44px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }

    .t-item {
      text-align: center;
    }

    .t-num {
      font-family: var(--fd);
      font-size: 2.1rem;
      color: var(--orange);
      line-height: 1;
    }

    .t-lbl {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .h-right {
      position: relative;
      overflow: hidden;
    }

    .h-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 8s ease;
    }

    .h-right:hover img {
      transform: scale(1.04);
    }

    .h-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(224, 85, 0, .15) 0%, transparent 55%);
    }

    .h-badge {
      position: absolute;
      bottom: 32px;
      left: 32px;
      background: var(--orange);
      color: #fff;
      padding: 13px 20px;
      clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
    }

    .h-badge-n {
      font-family: var(--fd);
      font-size: 1.8rem;
      line-height: 1;
    }

    .h-badge-t {
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    /* TICKER */
    .tkw {
      background: var(--orange);
      padding: 10px 0;
      overflow: hidden;
    }

    .tk {
      display: flex;
      white-space: nowrap;
      animation: tkr 35s linear infinite;
      width: max-content;
    }

    .tk-i {
      font-family: var(--fd);
      font-size: .92rem;
      letter-spacing: .1em;
      color: #fff;
      padding: 0 34px;
    }

    .tk-s {
      color: rgba(255, 255, 255, .35);
    }

    @keyframes tkr {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* SECTION */
    section {
      padding: 96px 56px;
    }

    .slbl {
      font-size: .66rem;
      font-weight: 700;
      letter-spacing: .34em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 11px;
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .slbl::before {
      content: '';
      width: 22px;
      height: 2px;
      background: var(--orange);
    }

    .stitle {
      font-family: var(--fd);
      font-size: clamp(2.1rem, 4.8vw, 4rem);
      line-height: 1;
      letter-spacing: .03em;
      color: var(--dark);
    }

    .stitle em {
      font-style: normal;
      color: var(--orange);
    }

    /* FLEET */
    #fleet {
      background: var(--white);
    }

    .fl-hdr {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 50px;
    }

    .fl-hdr-r {
      font-size: .85rem;
      font-weight: 300;
      color: var(--muted);
      max-width: 280px;
      text-align: right;
      line-height: 1.7;
    }

    .fl-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
    }

    .fc {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/3;
      cursor: none;
    }

    .fc img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.25, .46, .45, .94), filter .4s;
      filter: brightness(.87) saturate(.9);
    }

    .fc:hover img {
      transform: scale(1.07);
      filter: brightness(.45) saturate(.65);
    }

    .fc-ov {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 22px;
      background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, transparent 52%);
    }

    .fc-cat {
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .27em;
      text-transform: uppercase;
      color: var(--orange-l);
      margin-bottom: 4px;
    }

    .fc-name {
      font-family: var(--fd);
      font-size: 1.55rem;
      letter-spacing: .04em;
      color: #fff;
      line-height: 1;
    }

    .fc-desc {
      font-size: .76rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .62);
      margin-top: 5px;
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s, opacity .35s;
      opacity: 0;
    }

    .fc:hover .fc-desc {
      max-height: 58px;
      opacity: 1;
    }

    .fc-price {
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--orange);
      color: #fff;
      font-family: var(--fd);
      font-size: .95rem;
      padding: 3px 11px;
      clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
    }

    .fc-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      background: #fff;
      color: var(--dark);
      font-family: var(--fb);
      font-weight: 800;
      font-size: .7rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: 10px 22px;
      border: none;
      clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
      cursor: none;
      transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    }

    .fc:hover .fc-btn {
      transform: translate(-50%, -50%) scale(1);
    }

    /* BRANDS */
    #brands {
      background: var(--white);
      padding: 56px 56px;
    }

    .br-title {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--muted);
      text-align: center;
      margin-bottom: 32px;
    }

    .br-wrap {
      overflow: hidden;
    }

    .br-track {
      display: flex;
      white-space: nowrap;
      animation: tkr 22s linear infinite;
      width: max-content;
    }

    .br-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 155px;
      height: 58px;
      padding: 0 22px;
      font-family: var(--fd);
      font-size: 1.2rem;
      letter-spacing: .07em;
      color: var(--bg3);
      flex-shrink: 0;
      transition: color .2s;
    }

    .br-logo:hover {
      color: var(--muted);
    }

    /* GALLERY */
    #gallery {
      background: var(--bg2);
    }

    .gal-hdr {
      margin-bottom: 42px;
    }

    .gal-filters {
      display: flex;
      gap: 9px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .gf-btn {
      font-family: var(--fb);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .17em;
      text-transform: uppercase;
      padding: 8px 18px;
      background: transparent;
      border: 1.5px solid var(--border);
      color: var(--muted);
      cursor: none;
      transition: all .2s;
      clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
    }

    .gf-btn:hover,
    .gf-btn.active {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
    }

    .gal-grid {
      columns: 4;
      column-gap: 11px;
    }

    .gi {
      break-inside: avoid;
      margin-bottom: 11px;
      overflow: hidden;
      position: relative;
      cursor: none;
    }

    .gi img {
      width: 100%;
      display: block;
      transition: transform .5s ease, filter .32s;
      filter: brightness(.92) saturate(.88);
    }

    .gi:hover img {
      transform: scale(1.07);
      filter: brightness(.5) saturate(.65);
    }

    .gi-ov {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: flex-end;
      padding: 13px;
      background: linear-gradient(to top, rgba(0, 0, 0, .68) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .28s;
    }

    .gi:hover .gi-ov {
      opacity: 1;
    }

    .gi-ov span {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #fff;
    }

    .gi.hidden {
      display: none;
    }

    .gi.fi {
      animation: gfi .36s ease forwards;
    }

    @keyframes gfi {
      from {
        opacity: 0;
        transform: scale(.95)
      }

      to {
        opacity: 1;
        transform: scale(1)
      }
    }

    /* LIGHTBOX */
    .lbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 6, 2, .95);
      z-index: 9000;
      align-items: center;
      justify-content: center;
    }

    .lbox.open {
      display: flex;
    }

    .lb-w {
      max-width: 88vw;
      max-height: 88vh;
      position: relative;
      text-align: center;
    }

    .lb-w img {
      max-width: 100%;
      max-height: 82vh;
      object-fit: contain;
      display: block;
    }

    .lb-cap {
      color: rgba(255, 255, 255, .55);
      font-size: .75rem;
      letter-spacing: .17em;
      text-transform: uppercase;
      margin-top: 13px;
    }

    .lb-x {
      position: absolute;
      top: 22px;
      right: 26px;
      background: none;
      border: none;
      color: #fff;
      font-size: 1.7rem;
      cursor: none;
      transition: color .2s;
    }

    .lb-x:hover {
      color: var(--orange);
    }

    .lb-a {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .14);
      color: #fff;
      font-size: 2.3rem;
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      z-index: 9001;
      transition: background .2s;
    }

    .lb-a:hover {
      background: var(--orange);
      border-color: var(--orange);
    }

    .lb-p {
      left: 18px;
    }

    .lb-n {
      right: 18px;
    }

    /* WHY */
    #why {
      background: var(--dark);
      color: #fff;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 0;
    }

    .why-l {
      padding: 96px 60px 96px 56px;
    }

    .why-l .slbl {
      color: var(--orange-l);
    }

    .why-l .slbl::before {
      background: var(--orange-l);
    }

    .why-l .stitle {
      color: #fff;
      margin-bottom: 44px;
    }

    .why-g {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .wc {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .07);
      padding: 26px 22px;
      transition: background .3s, border-color .3s;
    }

    .wc:hover {
      background: rgba(224, 85, 0, .11);
      border-color: rgba(224, 85, 0, .32);
    }

    .wc-ic {
      font-size: 1.7rem;
      margin-bottom: 12px;
    }

    .wc h3 {
      font-family: var(--fb);
      font-weight: 700;
      font-size: .87rem;
      letter-spacing: .05em;
      margin-bottom: 7px;
      color: #fff;
    }

    .wc p {
      font-size: .8rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .52);
      line-height: 1.72;
    }

    .why-r {
      position: relative;
      overflow: hidden;
    }

    .why-r img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.55);
      transition: transform 8s ease;
    }

    .why-r:hover img {
      transform: scale(1.04);
    }

    .why-stats {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      background: rgba(224, 85, 0, .9);
    }

    .ws {
      padding: 20px 16px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, .18);
    }

    .ws:last-child {
      border-right: none;
    }

    .ws-n {
      font-family: var(--fd);
      font-size: 2.2rem;
      color: #fff;
      line-height: 1;
    }

    .ws-l {
      font-size: .58rem;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .8);
    }

    /* SERVICES */
    #services {
      background: var(--bg);
    }

    .sv-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 3px;
      margin-top: 50px;
    }

    .svc {
      position: relative;
      overflow: hidden;
      cursor: none;
    }

    .svc img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
      transition: transform .6s ease, filter .35s;
      filter: brightness(.72) saturate(.85);
    }

    .svc:hover img {
      transform: scale(1.07);
      filter: brightness(.42) saturate(.6);
    }

    .svc-ov {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 26px 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .18) 48%, transparent 100%);
    }

    .svc-n2 {
      font-family: var(--fd);
      font-size: 3rem;
      color: rgba(255, 255, 255, .13);
      line-height: 1;
      margin-bottom: 7px;
    }

    .svc-name {
      font-family: var(--fd);
      font-size: 1.35rem;
      letter-spacing: .04em;
      color: #fff;
      margin-bottom: 5px;
    }

    .svc-d {
      font-size: .76rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .58);
      line-height: 1.62;
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s, opacity .35s;
      opacity: 0;
    }

    .svc:hover .svc-d {
      max-height: 80px;
      opacity: 1;
    }

    .svc-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--orange);
      color: #fff;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .19em;
      text-transform: uppercase;
      padding: 3px 11px;
      clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
    }

    /* PROCESS */
    #process {
      background: var(--bg2);
      text-align: center;
    }

    .ps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      margin-top: 60px;
    }

    .ps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--orange), transparent);
    }

    .step {
      padding: 0 18px;
    }

    .s-bub {
      width: 70px;
      height: 70px;
      background: var(--orange);
      font-family: var(--fd);
      font-size: 2.1rem;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      clip-path: polygon(11px 0, 100% 0, calc(100% - 11px) 100%, 0 100%);
    }

    .step h3 {
      font-family: var(--fd);
      font-size: 1.2rem;
      letter-spacing: .04em;
      color: var(--dark);
      margin-bottom: 9px;
    }

    .step p {
      font-size: .8rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.77;
    }

    /* TESTIMONIALS */
    #testi {
      background: var(--white);
      overflow: hidden;
    }

    .tes-hdr {
      margin-bottom: 48px;
    }

    .tes-track {
      display: flex;
      gap: 20px;
      animation: tkr 34s linear infinite;
      width: max-content;
    }

    .tes-track:hover {
      animation-play-state: paused;
    }

    .tc {
      width: 365px;
      flex-shrink: 0;
      background: var(--bg);
      padding: 32px;
      border-left: 3px solid var(--orange);
    }

    .tc-stars {
      color: var(--orange);
      font-size: .85rem;
      letter-spacing: 3px;
      margin-bottom: 12px;
    }

    .tc-txt {
      font-size: .88rem;
      font-weight: 300;
      font-style: italic;
      line-height: 1.86;
      color: var(--muted);
      margin-bottom: 20px;
    }

    .tc-auth {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .tc-av {
      width: 40px;
      height: 40px;
      background: var(--orange);
      font-family: var(--fd);
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .tc-nm {
      font-weight: 700;
      font-size: .83rem;
      color: var(--dark);
    }

    .tc-rl {
      font-size: .68rem;
      color: var(--muted);
      letter-spacing: .05em;
    }

    /* NEWS */
    #news {
      background: var(--bg2);
    }

    .nw-hdr {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 44px;
    }

    .nw-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .nc {
      background: var(--white);
      overflow: hidden;
      cursor: none;
      transition: box-shadow .3s, transform .3s;
    }

    .nc:hover {
      box-shadow: 0 16px 48px rgba(0, 0, 0, .09);
      transform: translateY(-4px);
    }

    .nc img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      display: block;
      transition: transform .5s;
    }

    .nc:hover img {
      transform: scale(1.04);
    }

    .nc-body {
      padding: 22px;
    }

    .nc-tag {
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 8px;
    }

    .nc-ttl {
      font-family: var(--fd);
      font-size: 1.28rem;
      letter-spacing: .03em;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 9px;
    }

    .nc-desc {
      font-size: .8rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.72;
    }

    .nc-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
      font-size: .68rem;
      color: var(--muted);
    }

    /* CTA */
    #cta {
      background: var(--dark);
      padding: 84px 56px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 56px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      right: -80px;
      top: -80px;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(224, 85, 0, .22) 0%, transparent 70%);
    }

    .cta-sub2 {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--orange-l);
      margin-bottom: 12px;
    }

    .cta-ttl {
      font-family: var(--fd);
      font-size: clamp(1.9rem, 4.2vw, 3.6rem);
      color: #fff;
      line-height: .94;
      letter-spacing: .03em;
    }

    .cta-p {
      font-size: .98rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .52);
      margin-top: 15px;
      line-height: 1.72;
    }

    .cta-acts {
      display: flex;
      flex-direction: column;
      gap: 13px;
      align-items: flex-end;
      flex-shrink: 0;
    }

    .btn-cta {
      font-family: var(--fb);
      font-weight: 800;
      font-size: .8rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      background: var(--orange);
      color: #fff;
      padding: 15px 34px;
      text-decoration: none;
      clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
      transition: background .2s, transform .2s;
      white-space: nowrap;
    }

    .btn-cta:hover {
      background: var(--orange-l);
      transform: scale(1.03);
    }

    .btn-cta-g {
      font-family: var(--fb);
      font-weight: 600;
      font-size: .76rem;
      letter-spacing: .11em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: color .2s;
      white-space: nowrap;
    }

    .btn-cta-g:hover {
      color: var(--orange-l);
    }

    /* CONTACT */
    #contact {
      background: var(--white);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .ci-wrap {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 32px;
    }

    .ci {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .ci-ic {
      width: 44px;
      height: 44px;
      background: rgba(224, 85, 0, .07);
      border: 1.5px solid rgba(224, 85, 0, .18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .ci-lbl {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .ci-v {
      font-size: .88rem;
      font-weight: 600;
      color: var(--dark);
      margin-top: 2px;
    }

    .c-map {
      margin-top: 28px;
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .cf {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .fr {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .fg label {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .fg input,
    .fg select,
    .fg textarea {
      background: var(--bg);
      border: 1.5px solid var(--border);
      color: var(--dark);
      font-family: var(--fb);
      font-size: .88rem;
      padding: 12px 15px;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      -webkit-appearance: none;
      appearance: none;
    }

    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(224, 85, 0, .09);
    }

    .fg textarea {
      resize: vertical;
      min-height: 108px;
    }

    .fg select option {
      background: var(--white);
      color: var(--dark);
    }

    .fsub {
      font-family: var(--fb);
      font-weight: 800;
      font-size: .8rem;
      letter-spacing: .17em;
      text-transform: uppercase;
      background: var(--orange);
      color: #fff;
      border: none;
      padding: 15px 34px;
      clip-path: polygon(11px 0, 100% 0, calc(100% - 11px) 100%, 0 100%);
      cursor: none;
      transition: background .2s, transform .2s;
      align-self: flex-start;
    }

    .fsub:hover {
      background: var(--orange-l);
      transform: scale(1.03);
    }

    .f-ok {
      display: none;
      background: rgba(224, 85, 0, .07);
      border: 1.5px solid var(--orange);
      padding: 16px 22px;
      color: var(--orange);
      font-weight: 700;
      letter-spacing: .09em;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
    }

    .ft-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 44px;
      padding: 68px 56px 52px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .ft-brand .ft-logo {
      font-family: var(--fd);
      font-size: 2.1rem;
      letter-spacing: .06em;
      color: #fff;
    }

    .ft-brand .ft-logo span {
      color: var(--orange);
    }

    .ft-brand .ft-tag {
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .32);
      margin-top: 3px;
      margin-bottom: 16px;
    }

    .ft-brand p {
      font-size: .8rem;
      font-weight: 300;
      line-height: 1.8;
      color: rgba(255, 255, 255, .42);
      max-width: 250px;
    }

    .ft-soc {
      display: flex;
      gap: 9px;
      margin-top: 22px;
    }

    .fs {
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .09);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .78rem;
      color: rgba(255, 255, 255, .45);
      text-decoration: none;
      transition: all .2s;
    }

    .fs:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
    }

    .ft-col h4 {
      font-size: .66rem;
      font-weight: 700;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
    }

    .ft-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .ft-col a {
      font-size: .8rem;
      color: rgba(255, 255, 255, .42);
      text-decoration: none;
      transition: color .2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .ft-col a:hover {
      color: #fff;
    }

    .ft-col a::before {
      content: '›';
      color: var(--orange);
      font-size: .88rem;
    }

    .ft-bot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 56px;
      font-size: .7rem;
      color: rgba(255, 255, 255, .28);
      letter-spacing: .05em;
    }

    .ft-bot-l {
      display: flex;
      gap: 22px;
    }

    .ft-bot-l a {
      color: rgba(255, 255, 255, .28);
      text-decoration: none;
      transition: color .2s;
    }

    .ft-bot-l a:hover {
      color: var(--orange);
    }

    /* SCROLL TOP */
    #st {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 44px;
      height: 44px;
      background: var(--orange);
      color: #fff;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
      cursor: none;
      opacity: 0;
      transition: opacity .3s, transform .2s;
      z-index: 800;
    }

    #st.vis {
      opacity: 1;
    }

    #st:hover {
      transform: scale(1.12);
    }

    /* REVEAL */
    .rv {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .rv.vis {
      opacity: 1;
      transform: translateY(0);
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    /* MOBILE NAV OVERLAY */
    #nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      z-index: 850;
      backdrop-filter: blur(2px);
      pointer-events: none;
    }

    body.nav-open {
      overflow: hidden;
    }

    body.nav-open #nav-overlay {
      display: block;
      pointer-events: auto;
    }

    /* MOBILE NAV DRAWER */
    @media(max-width:1024px) {

      /* Restore default cursor on touch screens */
      body {
        cursor: auto;
      }

      a,
      button,
      [onclick] {
        cursor: pointer;
      }

      #cur,
      #ring {
        display: none;
      }

      #topbar {
        display: none;
      }

      .hdr {
        padding: 0 22px;
        height: 62px;
      }

      /* NAV becomes a slide-in drawer on mobile */
      .nav {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        z-index: 900;
        padding: 80px 28px 40px;
        gap: 6px;
        box-shadow: -6px 0 40px rgba(0, 0, 0, .18);
        transition: right .35s cubic-bezier(.4, 0, .2, 1);
        overflow-y: auto;
        pointer-events: none;
      }

      body.nav-open .nav {
        right: 0;
        pointer-events: auto;
      }

      .nav>li>a {
        font-size: .9rem;
        padding: 13px 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
      }

      .nav>li>a:last-child {
        border-bottom: none;
      }

      /* Show dropdowns inline on mobile */
      .drop {
        display: block;
        position: static;
        box-shadow: none;
        border: none;
        background: var(--bg2);
        padding: 4px 0 4px 12px;
        margin-bottom: 4px;
      }

      .drop a {
        border-bottom: none;
        font-size: .8rem;
        padding: 9px 10px;
      }

      /* Hide desktop-only actions on mobile */
      .h-actions .btn-call,
      .h-actions .btn-q {
        display: none;
      }

      .hburg {
        display: flex;
        z-index: 950;
        position: relative;
      }

      /* Animate burger to X when open */
      .hburg.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      .hburg.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
      }

      .hburg.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      #hero {
        grid-template-columns: 1fr;
      }

      .h-right {
        display: none;
      }

      .h-left {
        padding: 78px 22px 58px;
      }

      .fl-grid {
        grid-template-columns: 1fr 1fr;
      }

      .gal-grid {
        columns: 2;
      }

      .sv-grid {
        grid-template-columns: 1fr 1fr;
      }

      .ps {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
      }

      .ps::before {
        display: none;
      }

      #why {
        grid-template-columns: 1fr;
      }

      .why-r {
        display: none;
      }

      #contact {
        grid-template-columns: 1fr;
      }

      .nw-grid {
        grid-template-columns: 1fr;
      }

      .ft-top {
        grid-template-columns: 1fr 1fr;
      }

      section {
        padding: 68px 22px;
      }

      #cta {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 68px 22px;
      }

      .cta-acts {
        align-items: flex-start;
      }

      .ft-bot {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 18px 22px;
      }
    }