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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: #151515;
      background: #fff;
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1240px, 92%);
      margin: 0 auto;
    }

    .site-header {
      background: rgba(255,255,255,.96);
      border-bottom: 1px solid #e7e1d8;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(10px);
    }

    .nav {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .brand {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .brand-name {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 32px;
      font-weight: 700;
    }

    .brand-tagline {
      margin-top: 8px;
      color: #8d6c35;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      font-size: 15px;
      font-weight: 600;
    }

    .nav-links a {
      padding: 35px 0;
      position: relative;
    }

    .nav-links a:hover {
      color: #a67c38;
    }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 24px;
      width: 100%;
      height: 2px;
      background: #bd9652;
    }

    .header-quote {
      background: #bd9652;
      color: #fff;
      padding: 14px 22px;
      border-radius: 5px;
      font-weight: 700;
    }

    .hero {
      background: #f7f5f1;
      padding: 110px 0 95px;
    }

    .hero-content {
      max-width: 900px;
    }

    .eyebrow,
    .section-label {
      color: #9f7739;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .hero h1 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(46px, 6vw, 74px);
      font-weight: 500;
      line-height: 1.06;
      letter-spacing: -2px;
    }

    .hero p {
      max-width: 800px;
      color: #555;
      font-size: 19px;
      line-height: 1.8;
      margin-top: 24px;
    }

    .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 27px;
      border-radius: 5px;
      font-weight: 700;
    }

    .btn-gold {
      background: #bd9652;
      color: #fff;
    }

    .btn-outline {
      background: #fff;
      border: 1px solid #333;
    }

    .section {
      padding: 95px 0;
    }

    .section-soft {
      background: #f7f5f1;
    }

    .section-dark {
      background: #111;
      color: #fff;
    }

    .section-title {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(36px, 4vw, 52px);
      line-height: 1.12;
      font-weight: 500;
    }

    .section-intro {
      color: #666;
      font-size: 18px;
      line-height: 1.85;
      max-width: 800px;
      margin-top: 20px;
    }

    .fleet-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      margin-top: 48px;
    }

    .fleet-card {
      background: #fff;
      border: 1px solid #ded8cd;
      padding: 38px;
      position: relative;
    }

    .fleet-type {
      color: #bd9652;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .fleet-card h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 34px;
      font-weight: 500;
      margin-top: 10px;
    }

    .fleet-card p {
      color: #666;
      margin-top: 15px;
      line-height: 1.8;
    }

    .capacity {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 26px;
    }

    .capacity-box {
      background: #f7f5f1;
      padding: 18px;
      border-left: 3px solid #bd9652;
    }

    .capacity-box strong {
      display: block;
      font-size: 22px;
      color: #111;
    }

    .capacity-box span {
      color: #777;
      font-size: 13px;
    }

    .good-for {
      margin-top: 26px;
      padding-top: 24px;
      border-top: 1px solid #e1dbd0;
    }

    .good-for h3 {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #8f6b35;
      margin-bottom: 10px;
    }

    .good-for p {
      margin-top: 0;
    }

    .service-link {
      display: inline-block;
      margin-top: 24px;
      color: #9f7739;
      font-weight: 700;
    }

    .dark-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 45px;
    }

    .dark-card {
      border: 1px solid #303030;
      background: #181818;
      padding: 30px;
    }

    .dark-card h3 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 25px;
      font-weight: 500;
    }

    .dark-card p {
      color: #aaa;
      margin-top: 12px;
      line-height: 1.75;
    }

    .cta {
      padding: 85px 0;
      background: #bd9652;
      text-align: center;
    }

    .cta h2 {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(38px, 4vw, 55px);
      font-weight: 500;
    }

    .cta p {
      max-width: 700px;
      margin: 15px auto 27px;
      font-size: 18px;
    }

    .cta-button {
      display: inline-block;
      padding: 17px 30px;
      background: #111;
      color: #fff;
      border-radius: 5px;
      font-weight: 700;
    }

    footer {
      background: #080808;
      color: #b3b3b3;
      padding: 60px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 60px;
    }

    .footer-brand {
      color: #fff;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 29px;
      margin-bottom: 14px;
    }

    footer h3 {
      color: #fff;
      font-size: 15px;
      margin-bottom: 16px;
    }

    footer p {
      line-height: 1.75;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a:hover {
      color: #c49b55;
    }

    .copyright {
      margin-top: 45px;
      padding-top: 25px;
      border-top: 1px solid #252525;
      text-align: center;
      font-size: 13px;
    }

    @media (max-width: 850px) {
      .nav-links {
        display: none;
      }

      .fleet-grid,
      .dark-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
      }
    }

    @media (max-width: 560px) {
      .brand-name {
        font-size: 25px;
      }

      .header-quote {
        padding: 11px 13px;
        font-size: 12px;
      }

      .hero {
        padding: 80px 0 70px;
      }

      .hero h1 {
        font-size: 43px;
      }

      .section {
        padding: 70px 0;
      }

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



body{
  font-family:Arial,Helvetica,sans-serif!important;
  color:#151515!important;
}

.container{
  width:min(1280px,94%)!important;
}

/* HEADER */

.site-header{position:fixed!important;top:0!important;left:0!important;right:0!important;width:100%!important;background:transparent!important;transform:none!important;transition:none!important;
  position:fixed!important;
  top:0!important;
  z-index:1000!important;
  background:rgba(255,255,255,.96)!important;
  border-bottom:1px solid rgba(0,0,0,.07)!important;
  backdrop-filter:blur(12px)!important;
}

.nav{
  min-height:74px!important;
}

.brand{
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  gap:11px!important;
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:20px!important;
  font-weight:700!important;
  letter-spacing:-.02em!important;
}

.brand:before{
  content:"DL";
  width:36px;
  height:36px;
  border-radius:50%;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:800;
}

.nav-links{
  display:flex!important;
  align-items:center!important;
  gap:30px!important;
  font-size:13px!important;
  font-weight:600!important;
}

.nav-links > a{
  padding:28px 0!important;
}

.nav-links a.active::after{
  bottom:20px!important;
  background:#111!important;
}

.header-quote{
  background:#111!important;
  color:#fff!important;
  padding:12px 19px!important;
  border-radius:6px!important;
  font-size:13px!important;
}

/* SERVICES DROPDOWN */

.services-menu{
  position:relative;
  display:flex;
  align-items:center;
}

.services-trigger{
  appearance:none;
  border:0;
  background:transparent;
  font:inherit;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  padding:28px 0;
}

.services-dropdown{
  position:absolute;
  top:calc(100% - 5px);
  left:50%;
  transform:translate(-50%,10px);
  width:285px;
  padding:6px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.55);
  border-radius:8px;
  box-shadow:0 18px 45px rgba(0,0,0,.13);
  backdrop-filter:blur(18px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.18s ease;
}

.services-menu:hover .services-dropdown,
.services-menu:focus-within .services-dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%,0);
}

.services-dropdown a{
  display:block!important;
  padding:8px 10px!important;
  border-radius:6px!important;
}

.services-dropdown a:hover{
  background:rgba(255,255,255,.6)!important;
}

.services-dropdown strong{
  display:block;
  font-size:12px;
  line-height:1.15;
}

.services-dropdown span{
  display:block;
  margin-top:2px;
  color:#777;
  font-size:10px;
}

/* HERO */

.hero{
  padding:88px 0 68px!important;
  background:
    radial-gradient(circle at 82% 12%,rgba(181,138,67,.11),transparent 30%),
    linear-gradient(180deg,#fafaf8,#fff)!important;
}

.hero-content{
  max-width:930px!important;
}

.eyebrow,
.section-label{
  color:#a47b3c!important;
  font-size:10px!important;
  font-weight:800!important;
  letter-spacing:.18em!important;
}

.hero h1{
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:clamp(50px,5.8vw,78px)!important;
  font-weight:500!important;
  line-height:1!important;
  letter-spacing:-.05em!important;
}

.hero p{
  max-width:790px!important;
  font-size:17px!important;
  line-height:1.7!important;
  color:#5f6162!important;
}

.btn{
  min-height:50px!important;
  border-radius:6px!important;
  font-size:14px!important;
}

.btn-gold{
  background:#111!important;
  color:#fff!important;
}

.btn-outline{
  border:1px solid #cfcfcb!important;
}

/* GENERAL */

.section{
  padding:82px 0!important;
}

.section-soft{
  background:#f7f6f3!important;
}

.section-title{
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:clamp(36px,4vw,56px)!important;
  font-weight:500!important;
  line-height:1.04!important;
  letter-spacing:-.045em!important;
}

.section-intro{
  font-size:16px!important;
  line-height:1.7!important;
}

/* FLEET */

.fleet-grid{
  gap:22px!important;
}

.fleet-card{
  border:1px solid #e3e1dc!important;
  border-radius:14px!important;
  padding:24px!important;
  box-shadow:0 10px 32px rgba(0,0,0,.035)!important;
  overflow:hidden;
}

.fleet-type{
  color:#a47b3c!important;
  font-size:10px!important;
  letter-spacing:.16em!important;
}

.fleet-card h2{
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:30px!important;
  font-weight:600!important;
  letter-spacing:-.035em!important;
  margin-top:8px!important;
}

.fleet-photo{
  min-height:280px;
  margin:22px -24px 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:
    linear-gradient(135deg,rgba(0,0,0,.055),rgba(0,0,0,.01)),
    #e9e8e4;
  color:#777;
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.fleet-card p{
  font-size:15px!important;
  line-height:1.7!important;
}

.capacity{
  gap:10px!important;
  margin-top:22px!important;
}

.capacity-box{
  background:#f6f5f2!important;
  border-left:0!important;
  border-radius:8px!important;
  padding:15px!important;
}

.capacity-box strong{
  font-size:20px!important;
}

.capacity-box span{
  font-size:12px!important;
}

.good-for{
  margin-top:22px!important;
  padding-top:20px!important;
}

.good-for h3{
  font-size:10px!important;
  letter-spacing:.15em!important;
  color:#777!important;
}

.service-link{
  color:#111!important;
  font-size:13px!important;
  border-bottom:1px solid #111;
  padding-bottom:2px;
}

/* DARK SECTION */

.section-dark{
  background:#111!important;
}

.dark-grid{
  gap:0!important;
  border-top:1px solid #303030!important;
  border-bottom:1px solid #303030!important;
}

.dark-card{
  background:transparent!important;
  border:0!important;
  border-right:1px solid #303030!important;
  padding:30px!important;
}

.dark-card:last-child{
  border-right:0!important;
}

.dark-card h3{
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:21px!important;
  font-weight:600!important;
}

/* CTA */

.cta{
  background:#111!important;
  color:#fff!important;
  padding:82px 0!important;
}

.cta h2{
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:clamp(38px,4.5vw,58px)!important;
  font-weight:500!important;
  letter-spacing:-.045em!important;
}

.cta p{
  color:#b7b7b7!important;
  font-size:16px!important;
}

.cta-button{
  background:#fff!important;
  color:#111!important;
  border-radius:6px!important;
}

/* FOOTER */

footer{
  padding:50px 0 28px!important;
}

.footer-brand{
  font-family:Arial,Helvetica,sans-serif!important;
  font-size:22px!important;
  font-weight:700!important;
}

/* MOBILE */

@media(max-width:760px){

  .nav{
    min-height:70px!important;
  }

  .nav-links{
    display:none!important;
  }

  .brand{
    font-size:17px!important;
  }

  .header-quote{
    padding:11px 14px!important;
    font-size:12px!important;
  }

  .hero{
    padding:62px 0 52px!important;
  }

  .hero h1{
    font-size:44px!important;
  }

  .hero p{
    font-size:15px!important;
  }

  .section{
    padding:58px 0!important;
  }

  .fleet-grid,
  .dark-grid{
    grid-template-columns:1fr!important;
  }

  .fleet-photo{
    min-height:220px!important;
  }

  .capacity{
    grid-template-columns:repeat(2,1fr)!important;
  }

  .dark-card{
    border-right:0!important;
    border-bottom:1px solid #303030!important;
    padding:24px 0!important;
  }

  .dark-card:last-child{
    border-bottom:0!important;
  }

  .footer-grid{
    grid-template-columns:1fr!important;
    gap:30px!important;
  }
}





.mobile-simple-menu{
  display:none;
}

@media(max-width:760px){

  .nav-links{
    display:none!important;
  }

  .header-quote{
    display:none!important;
  }

  .site-header,
  .site-header .container,
  .site-header .nav{
    overflow:visible!important;
  }

  .mobile-simple-menu{
    display:block!important;

    position:relative;

    margin-left:auto;

    z-index:5000;
  }

  .mobile-simple-btn{
    width:42px;
    height:42px;

    min-width:42px;

    padding:0;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:5px;

    background:
      linear-gradient(#111,#111)
      center/23px 2px
      no-repeat;

    border:0;

    cursor:pointer;
  }

  .mobile-simple-btn::before,
  .mobile-simple-btn::after{
    content:"";

    display:block;

    width:23px;
    height:2px;

    background:#111;

    border-radius:2px;
  }

  .mobile-simple-btn span{
    display:none;
  }

  .mobile-simple-dropdown{
    display:block;

    position:absolute;

    top:49px;
    right:0;

    width:min(290px,calc(100vw - 28px));

    max-height:calc(100vh - 90px);

    overflow:hidden;

    padding:8px;

    background:rgba(255,255,255,.99);

    border:1px solid rgba(0,0,0,.09);
    border-radius:12px;

    box-shadow:0 20px 55px rgba(0,0,0,.16);

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transform:translateY(-6px);

    transition:
      opacity .16s ease,
      transform .16s ease,
      visibility .16s ease;
  }

  .mobile-simple-menu.open
  .mobile-simple-dropdown{
    opacity:1;
    visibility:visible;
    pointer-events:auto;

    transform:translateY(0);
  }

  .mobile-simple-dropdown > a,
  .mobile-services-open{
    display:flex!important;

    width:100%!important;

    align-items:center!important;
    justify-content:space-between!important;

    padding:13px 12px!important;

    color:#222!important;
    background:transparent!important;

    border:0!important;
    border-bottom:1px solid #ecece8!important;
    border-radius:0!important;

    font-family:inherit!important;
    font-size:14px!important;
    font-weight:600!important;

    text-decoration:none!important;
    text-align:left!important;
  }

  .mobile-simple-dropdown > a:last-of-type{
    border-bottom:0!important;
  }

  .mobile-services-open{
    cursor:pointer;
  }

  .mobile-services-panel{
    position:absolute;

    inset:0;

    padding:8px;

    background:rgba(255,255,255,.99);

    border-radius:12px;

    overflow-y:auto;

    transform:translateX(105%);

    transition:transform .18s ease;

    z-index:2;
  }

  .mobile-simple-menu.services-open
  .mobile-services-panel{
    transform:translateX(0);
  }

  .mobile-services-back{
    display:flex;

    width:100%;

    align-items:center;

    gap:8px;

    padding:12px 10px 13px;

    background:transparent;
    color:#111;

    border:0;
    border-bottom:1px solid #ecece8;

    font-family:inherit;
    font-size:13px;
    font-weight:700;

    cursor:pointer;
  }

  .mobile-services-panel a{
    display:block!important;

    padding:11px 10px!important;

    color:#333!important;

    font-size:13px!important;
    font-weight:500!important;

    text-decoration:none!important;

    border-bottom:1px solid #f0f0ed!important;
  }

  .mobile-services-panel a:last-child{
    border-bottom:0!important;
  }

}

