:root {
  color-scheme: light;
  --ink: #143040;
  --muted: #5b6b75;
  --line: #d7e6eb;
  --panel: #ffffff;
  --soft: #edf9fb;
  --water: #00a6d6;
  --coral: #ff6b6b;
  --lime: #9ad23b;
  --sun: #ffd166;
  --shadow: 0 18px 45px rgba(20, 48, 64, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #f8fcfd;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 48px);
  color: #fff;
  background: rgba(8, 16, 20, .96);
  border-bottom: 1px solid rgba(255, 209, 102, .28);
  backdrop-filter: blur(12px);
}

.brand,
.main-nav,
.hero-actions,
.requirement,
.cars-event,
.contact {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: #050505;
  border-radius: 8px;
}

.main-nav {
  justify-content: center;
  gap: 8px;
}

.main-nav a,
.main-nav button,
.phone-link {
  padding: 10px 12px;
  color: rgba(255, 255, 255, .88);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav button:hover,
.phone-link {
  color: #0b202a;
  background: var(--sun);
  border-color: var(--sun);
}

.phone-link {
  color: #0b202a;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  width: min(310px, 90vw);
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(255, 209, 102, .42);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

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

.dropdown-menu a {
  color: var(--ink);
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: #fff4c4;
}

.hero {
  min-height: calc(100vh - 67px);
  background: #0c2735;
}

.carousel {
  position: relative;
  min-height: calc(100vh - 67px);
  overflow: hidden;
  isolation: isolate;
}

.carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 28, 39, .80), rgba(7, 28, 39, .32) 46%, rgba(7, 28, 39, .12)),
    linear-gradient(0deg, rgba(7, 28, 39, .72), rgba(7, 28, 39, 0) 46%);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .8s ease, transform 5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: clamp(90px, 14vh, 160px) clamp(18px, 6vw, 76px) 120px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.text-button {
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
}

.primary {
  color: #062633;
  background: var(--sun);
}

.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
}

.secondary.dark {
  color: var(--ink);
  border-color: var(--line);
}

.carousel-caption {
  position: absolute;
  right: clamp(16px, 4vw, 52px);
  bottom: 28px;
  z-index: 4;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 14px;
  color: #fff;
  font-weight: 800;
  background: rgba(6, 28, 39, .58);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

section:not(.hero) {
  padding: clamp(54px, 8vw, 92px) clamp(16px, 5vw, 64px);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.section-heading p {
  font-size: 18px;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.feature-panel,
.requirements-panel,
.package-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-panel,
.requirements-panel {
  padding: clamp(22px, 4vw, 34px);
}

.event-inline-media,
.package-media {
  display: block;
  width: 100%;
  object-fit: cover;
  background: var(--soft);
}

.event-inline-media--wide {
  height: 230px;
  margin-bottom: 24px;
  border-radius: 6px;
}

.check-list,
.package-card ul,
.modal-content ul {
  padding-left: 20px;
  line-height: 1.7;
}

.check-list li::marker,
.package-card li::marker,
.modal-content li::marker {
  color: var(--water);
}

.requirement {
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.requirement:first-of-type {
  border-top: 0;
}

.icon {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #075f7a;
  background: var(--soft);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
}

.requirement p {
  margin-bottom: 0;
}

.text-button {
  width: 100%;
  margin-top: 18px;
  padding: 14px 16px;
  color: #fff;
  background: #0c7ea0;
}

.packages {
  background: #eef8fb;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.package-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.package-media {
  width: calc(100% + 52px);
  height: 220px;
  margin: -26px -26px 24px;
}

.event-video-block {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  max-width: 1180px;
  margin: 32px auto 0;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background: #073849;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.event-video-block h3 {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
}

.event-video-block p:not(.eyebrow) {
  color: #d8eef5;
}

.event-video-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.event-video-gallery video {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: contain;
  background: #02151c;
  border-radius: 6px;
}

.package-card.highlight {
  border-top: 5px solid var(--water);
}

.package-card.premium {
  border-top: 5px solid var(--coral);
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: #075f7a;
  background: var(--soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.price {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  font-size: 15px;
  color: var(--muted);
}

.option-list,
.spec-grid {
  max-width: 980px;
  margin: 0 auto;
}

.option-list {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.option-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 17px 22px;
  border-top: 1px solid var(--line);
}

.option-row:first-child {
  border-top: 0;
}

.included-note {
  max-width: 980px;
  margin: 14px auto 0;
  color: #2d6676;
  font-weight: 800;
  text-align: center;
}

.locations {
  background: #fff;
}

.center-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.center-grid article {
  overflow: hidden;
  background: #f6fbfc;
  border: 1px solid var(--line);
  border-top: 5px solid var(--sun);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(20, 48, 64, .08);
}

.center-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.center-image-link {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #101010;
}

.center-image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.center-image-link:hover img,
.center-image-link:focus-visible img {
  transform: scale(1.025);
}

.center-card-content {
  padding: 22px;
}

.center-website {
  display: inline-block;
  margin-bottom: 10px;
  color: #087c9d;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.center-address {
  min-height: 48px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.center-card--location {
  grid-column: 1 / -1;
  border-top-color: var(--water) !important;
}

.center-card--location .center-card-content {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) minmax(260px, auto);
  column-gap: 24px;
  align-items: center;
}

.center-card--location .eyebrow,
.center-card--location h3 {
  margin: 0;
}

.center-card--location .eyebrow {
  grid-row: 1 / 4;
}

.center-card--location .center-website,
.center-card--location .center-address {
  grid-column: 2;
  min-height: 0;
  margin: 4px 0 0;
}

.center-card--location .center-actions {
  grid-column: 3;
  grid-row: 1 / 4;
}

.center-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.center-actions a {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 10px 12px;
  color: #fff;
  background: #171717;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.center-actions .whatsapp-link {
  background: #168a46;
}

.center-actions a:hover,
.center-actions a:focus-visible {
  filter: brightness(1.12);
}

.specs {
  background: #fff;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.spec-grid p {
  min-height: 120px;
  margin: 0;
  padding: 20px;
  background: #f5fbfc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cars-event {
  justify-content: space-between;
  align-items: stretch;
  gap: clamp(24px, 5vw, 54px);
  background: #171717;
  color: #fff;
}

.cars-event p {
  color: rgba(255, 255, 255, .78);
}

.cars-copy {
  max-width: 760px;
}

.cars-copy .lead {
  font-size: 18px;
}

.cars-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.cars-media {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: #090909;
  border: 1px solid rgba(255, 209, 102, .28);
  border-radius: 8px;
}

.cars-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.cars-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 14px 12px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .88));
  font-size: 14px;
  font-weight: 800;
}

.cars-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.cars-highlights div {
  padding: 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 209, 102, .26);
  border-radius: 8px;
}

.cars-highlights strong,
.cars-highlights span {
  display: block;
}

.cars-highlights strong {
  margin-bottom: 8px;
  color: var(--sun);
  font-size: 18px;
}

.cars-highlights span {
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.cars-video-block {
  margin-top: 28px;
  padding: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 209, 102, .26);
  border-radius: 8px;
}

.cars-video-block h3 {
  margin-bottom: 16px;
  color: #fff;
}

.cars-video-block video {
  display: block;
  width: 100%;
  max-height: 520px;
  background: #000;
  border-radius: 6px;
}

.cars-card {
  flex: 0 0 min(440px, 100%);
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 209, 102, .48);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.cars-card p {
  color: var(--muted);
}

.cars-card ul {
  padding-left: 20px;
  line-height: 1.7;
}

.cars-card li::marker {
  color: var(--sun);
}

.cars-card .note {
  padding: 12px 14px;
  background: #fff8df;
  border: 1px solid #f3df97;
  border-radius: 8px;
  font-size: 14px;
}

.cars-options {
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cars-options h4 {
  margin: 0;
  padding: 12px 16px;
  background: #171717;
  color: var(--sun);
  font-size: 16px;
}

.cars-options .option-row {
  padding: 14px 16px;
  background: #fff;
}

.contact {
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #fff, #ebfbf7);
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  color: #fff;
  background: var(--coral);
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 25, 34, .72);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--ink);
  background: var(--soft);
  border-radius: 8px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.modal-content p,
.modal-content li {
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .phone-link {
    justify-self: start;
  }

  .overview-grid,
  .package-grid,
  .event-video-block,
  .spec-grid,
  .center-grid {
    grid-template-columns: 1fr;
  }

  .cars-event,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .cars-highlights {
    grid-template-columns: 1fr;
  }

  .cars-media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cars-media--fleet {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero,
  .carousel {
    min-height: 720px;
  }

  .hero-copy {
    padding-top: 86px;
  }

  h1 {
    font-size: 44px;
  }

  .carousel-caption {
    left: 16px;
    right: 16px;
  }

  .option-row {
    grid-template-columns: 1fr;
  }

  .contact-phone {
    width: 100%;
  }

  .cars-media-grid {
    grid-template-columns: 1fr;
  }

  .cars-media--fleet {
    grid-column: auto;
  }

  .event-video-gallery {
    grid-template-columns: 1fr;
  }

  .center-card--location .center-card-content {
    display: block;
  }

  .center-card--location .eyebrow,
  .center-card--location h3 {
    margin-bottom: 8px;
  }
}
