:root {
  --yellow: #f6b800;
  --yellow-2: #ffd44a;
  --ink: #070707;
  --charcoal: #151515;
  --graphite: #222222;
  --soft: #fff7df;
  --muted: #7b776b;
  --line: rgba(7, 7, 7, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #fffaf0;
  overflow-x: hidden;
}

body::selection {
  background: var(--yellow);
  color: var(--ink);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.section-pad {
  padding: 108px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 4px;
  background: var(--yellow);
}

.section-title {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-copy {
  color: #4d4a43;
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-mark {
  color: var(--yellow);
}

.btn {
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-brand {
  border: 2px solid var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 16px 32px rgba(246, 184, 0, 0.24);
}

.btn-brand:hover,
.btn-brand:focus {
  border-color: var(--yellow-2);
  background: var(--yellow-2);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn-outline-brand {
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: var(--white);
  background: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.btn-dark-brand {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn-dark-brand:hover,
.btn-dark-brand:focus {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.site-navbar {
  padding: 18px 0;
  background: rgba(7, 7, 7, 0.48);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.site-navbar.is-scrolled {
  padding: 10px 0;
  background: rgba(7, 7, 7, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.5rem;
}

.brand-title {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--yellow);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.28);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.18rem rgba(246, 184, 0, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.93) 0%, rgba(7, 7, 7, 0.78) 39%, rgba(7, 7, 7, 0.36) 100%),
    url("../assets/img/hero-vito-sunset.jpg") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: -22vw;
  left: -11vw;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -14vw;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  border: 34px solid rgba(246, 184, 0, 0.84);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(1080px, 100%);
  padding: 168px 0 132px;
}

.hero-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 44px;
  color: var(--ink);
}

.hero-logo-mark .logo-icon {
  width: 80px;
  height: 80px;
  display: inline-grid;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  font-size: 2.25rem;
}

.hero-logo-mark span {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-logo-mark .brand-main {
  font-size: clamp(1.7rem, 4vw, 2.9rem);
}

.hero-logo-mark .brand-small {
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  margin-bottom: 18px;
  background: rgba(7, 7, 7, 0.64);
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: 42px;
  height: 4px;
  background: var(--yellow);
}

.hero h1 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-line {
  display: block;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: var(--yellow);
  color: var(--ink);
  border-top: 8px solid var(--ink);
}

.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.hero-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-right: 2px solid rgba(7, 7, 7, 0.22);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-strip-item:last-child {
  border-right: 0;
}

.hero-strip-item i {
  font-size: 1.5rem;
}

.quick-contact {
  background: var(--ink);
  color: var(--white);
}

.quick-contact .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.quick-link:hover {
  color: var(--yellow);
}

.quick-link + .quick-link {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.intro {
  background: var(--soft);
}

.intro-card {
  height: 100%;
  padding: 36px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--yellow);
}

.intro-card h3 {
  margin: 0 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-card p {
  margin: 0;
  color: #4c4943;
  line-height: 1.7;
}

.service-card {
  position: relative;
  height: 100%;
  min-height: 360px;
  padding: 36px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 12px 12px 0 var(--yellow);
}

.service-number {
  position: absolute;
  right: 24px;
  top: 14px;
  color: rgba(7, 7, 7, 0.06);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 7rem;
  font-weight: 950;
  line-height: 0.9;
}

.service-icon {
  display: inline-grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.9rem;
}

.service-card h3 {
  position: relative;
  margin: 0 0 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 950;
  text-transform: uppercase;
}

.service-card p {
  position: relative;
  margin: 0;
  color: #4d4a43;
  line-height: 1.72;
}

.service-card ul {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  flex: 0 0 auto;
}

.fleet {
  background: var(--ink);
  color: var(--white);
}

.fleet .section-kicker,
.fleet .section-copy {
  color: rgba(255, 255, 255, 0.74);
}

.fleet .section-kicker::before {
  background: var(--yellow);
}

.vehicle-card {
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: #111;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: var(--yellow);
}

.vehicle-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vehicle-card:hover .vehicle-media img {
  transform: scale(1.055);
}

.vehicle-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-body {
  padding: 30px;
}

.vehicle-body h3 {
  margin: 0 0 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 950;
  text-transform: uppercase;
}

.vehicle-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.features {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.68)),
    url("../assets/img/vito-sunset-side.jpg") center / cover fixed no-repeat;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-weight: 900;
  text-transform: uppercase;
}

.feature-pill i {
  color: var(--yellow);
  font-size: 1.7rem;
}

.trips {
  background: var(--soft);
}

.trip-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.trip-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.trip-card.trip-tall {
  grid-row: span 2;
}

.trip-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.65s ease, opacity 0.25s ease;
}

.trip-card:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}

.trip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.04), rgba(7, 7, 7, 0.82));
}

.trip-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 28px;
}

.trip-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trip-body h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 950;
  text-transform: uppercase;
}

.trip-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.trip-card.text-trip {
  display: flex;
  min-height: 310px;
  padding: 30px;
  background: var(--yellow);
  color: var(--ink);
}

.trip-card.text-trip::after {
  display: none;
}

.trip-card.text-trip .trip-body {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}

.trip-card.text-trip p {
  color: rgba(7, 7, 7, 0.74);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-row span {
  display: inline-flex;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink);
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.6s ease, opacity 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.booking {
  background: var(--ink);
  color: var(--white);
}

.booking-panel {
  padding: 38px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: #121212;
  box-shadow: 18px 18px 0 rgba(246, 184, 0, 0.88);
}

.booking .section-copy,
.booking .section-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.booking .form-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking .form-control,
.booking .form-select {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.booking .form-select option {
  color: var(--ink);
}

.booking .form-control:focus,
.booking .form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 0.18rem rgba(246, 184, 0, 0.22);
}

.booking .form-control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-card {
  padding: 30px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line i {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}

.contact-line strong {
  display: block;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-line a,
.contact-line span {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.contact-line a:hover {
  color: var(--yellow);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.footer {
  padding: 34px 0;
  background: #050505;
  color: rgba(255, 255, 255, 0.68);
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer a:hover {
  color: var(--yellow);
}

@media (max-width: 1199.98px) {
  .hero::before {
    width: 540px;
  }

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

  .trip-card.trip-tall {
    grid-row: span 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 82px 0;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    background: rgba(7, 7, 7, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.62) 100%),
      url("../assets/img/hero-vito-sunset.jpg") center / cover no-repeat;
  }

  .hero::before {
    top: -150px;
    left: -180px;
    width: 430px;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding: 132px 0 210px;
  }

  .hero-logo-mark {
    color: var(--ink);
    margin-bottom: 38px;
  }

  .hero-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-strip-item {
    padding: 13px 20px;
    border-right: 0;
    border-bottom: 2px solid rgba(7, 7, 7, 0.18);
  }

  .quick-link + .quick-link {
    border-left: 0;
  }

  .features {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.9), rgba(7, 7, 7, 0.68)),
      url("../assets/img/vito-sunset-side.jpg") center / cover scroll no-repeat;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: clamp(2rem, 12vw, 3.3rem);
  }

  .hero h1 {
    font-size: clamp(2.12rem, 10.8vw, 2.72rem);
    line-height: 0.92;
    max-width: 100%;
  }

  .hero-content {
    padding-top: 118px;
  }

  .hero-logo-mark .logo-icon {
    width: 66px;
    height: 66px;
    font-size: 1.85rem;
  }

  .hero-logo-mark .brand-main {
    font-size: 1.7rem;
  }

  .hero-logo-mark .brand-small {
    font-size: 0.82rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .quick-contact .container {
    justify-content: flex-start;
  }

  .quick-link {
    width: 100%;
    padding: 14px 0;
  }

  .intro-card,
  .service-card,
  .booking-panel {
    box-shadow: none;
  }

  .service-card {
    min-height: auto;
    padding: 28px;
  }

  .trip-grid,
  .gallery-grid {
    display: block;
  }

  .trip-card,
  .gallery-item {
    min-height: 300px;
    margin-bottom: 14px;
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(6) {
    min-height: 300px;
  }

  .booking-panel {
    padding: 26px;
  }
}
