:root {
  --bg: #091117;
  --bg-soft: #101b24;
  --panel: #132330;
  --panel-2: #0d1821;
  --line: rgba(125, 249, 255, 0.22);
  --line-strong: rgba(208, 255, 59, 0.45);
  --text: #f2f7fb;
  --muted: #adc0cd;
  --cyan: #7df9ff;
  --lime: #d0ff3b;
  --steel: #6b8596;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(125, 249, 255, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(208, 255, 59, 0.08), transparent 24%),
    linear-gradient(180deg, #070e13 0%, #091117 45%, #0b141b 100%);
  color: var(--text);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

img {
  display: block;
  max-width: 100%;
}

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

.page-shell {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.site-header,
.site-footer,
.section,
.hero {
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-bottom: 20px;
  background: rgba(10, 20, 28, 0.82);
  border: 1px solid rgba(125, 249, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(94% 0, 100% 0, 100% 100%, 86% 100%);
  background: linear-gradient(180deg, rgba(208, 255, 59, 0.28), rgba(125, 249, 255, 0));
  pointer-events: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-cta {
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--lime), #94ff7d);
  color: #061014;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(208, 255, 59, 0.24);
  clip-path: polygon(0 0, 92% 0, 100% 26%, 100% 100%, 8% 100%, 0 74%);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  min-height: 760px;
  margin-bottom: 32px;
}

.hero-copy,
.hero-visual {
  min-height: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 42px 42px 52px;
  background:
    linear-gradient(135deg, rgba(10, 20, 28, 0.96), rgba(16, 28, 36, 0.92)),
    linear-gradient(90deg, rgba(125, 249, 255, 0.06), transparent 50%);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  border: 1px solid rgba(125, 249, 255, 0.14);
  overflow: hidden;
}

.hero-copy::before,
.hero-copy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-copy::before {
  top: 42px;
  left: 42px;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
}

.hero-copy::after {
  right: 60px;
  bottom: 160px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(125, 249, 255, 0.18);
  transform: rotate(18deg);
}

.hero h1 {
  max-width: 7ch;
  margin: 52px 0 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(3.4rem, 7.8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-track span {
  padding: 9px 12px;
  border: 1px solid rgba(125, 249, 255, 0.18);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.hero-visual {
  display: grid;
  align-items: end;
  padding: 22px 22px 22px 0;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 0 100%, 0 14%);
  filter: saturate(0.85) brightness(0.56);
}

.booking-panel {
  position: relative;
  margin-top: 28px;
  margin-right: auto;
  width: min(100%, 620px);
  padding: 22px;
  background: rgba(7, 14, 19, 0.88);
  border: 1px solid rgba(208, 255, 59, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 92% 0, 100% 15%, 100% 100%, 8% 100%, 0 84%);
  z-index: 2;
}

.panel-head,
.panel-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.panel-kicker,
.field-label,
.strip-label,
.card-index,
.step-card span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
}

.panel-price {
  color: var(--lime);
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.15rem;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 14px;
}

.fake-field {
  padding: 14px;
  background: rgba(16, 28, 36, 0.88);
  border: 1px solid rgba(125, 249, 255, 0.16);
}

.fake-field strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.panel-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.panel-button {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--cyan), #e8feff);
  color: #041116;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  clip-path: polygon(0 0, 90% 0, 100% 26%, 100% 100%, 10% 100%, 0 74%);
}

.section {
  margin-top: 28px;
  padding: 34px 24px 24px;
  background: linear-gradient(180deg, rgba(10, 20, 28, 0.88), rgba(12, 22, 30, 0.72));
  border: 1px solid rgba(125, 249, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section-heading {
  width: 100%;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(125, 249, 255, 0.18);
  font-family: "Chakra Petch", sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

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

.insight-card,
.step-card,
.condition-card,
.review-card,
.legal-card {
  padding: 18px;
  background: linear-gradient(180deg, rgba(19, 35, 48, 0.96), rgba(13, 24, 33, 0.96));
  border: 1px solid rgba(125, 249, 255, 0.14);
}

.insight-card h3,
.step-card h3,
.condition-card h3,
.route-copy h3,
.legal-card h2 {
  margin: 10px 0 10px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.25rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.accent-cyan {
  border-top: 3px solid var(--cyan);
}

.accent-lime {
  border-top: 3px solid var(--lime);
}

.accent-slate {
  border-top: 3px solid var(--steel);
}

.accent-photo {
  padding: 0;
  overflow: hidden;
}

.accent-photo img,
.photo-card img,
.route-panel img,
.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.data-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.data-strip > div {
  padding: 14px 16px;
  background: rgba(8, 15, 21, 0.86);
  border-top: 1px solid rgba(208, 255, 59, 0.26);
}

.data-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

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

.fleet-card {
  display: grid;
  background: linear-gradient(180deg, rgba(16, 28, 36, 0.95), rgba(8, 15, 21, 0.95));
  border: 1px solid rgba(125, 249, 255, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fleet-card:hover,
.fleet-card:focus-visible,
.fleet-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(208, 255, 59, 0.7);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.fleet-card img {
  aspect-ratio: 1.38 / 1;
}

.fleet-body {
  padding: 16px;
}

.fleet-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.fleet-head h3 {
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.fleet-head span {
  color: var(--lime);
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
}

.fleet-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

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

.step-card {
  border-left: 3px solid rgba(125, 249, 255, 0.46);
}

.conditions-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.route-panel {
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  background: rgba(8, 15, 21, 0.84);
  border: 1px solid rgba(125, 249, 255, 0.14);
}

.route-copy {
  padding: 18px;
}

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

.photo-card {
  padding: 0;
  min-height: 280px;
  overflow: hidden;
}

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

.review-card {
  display: grid;
  gap: 14px;
}

.review-card img {
  width: 72px;
  height: 72px;
}

.review-card blockquote {
  margin: 0;
  color: var(--text);
}

.review-card p {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: rgba(10, 20, 28, 0.82);
  border: 1px solid rgba(125, 249, 255, 0.14);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  max-width: 72ch;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 18px;
  background: rgba(10, 20, 28, 0.88);
  border: 1px solid rgba(125, 249, 255, 0.12);
}

.footer-brand p {
  margin: 12px 0 0;
  max-width: 56ch;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.legal-shell {
  min-height: 100vh;
}

.legal-main {
  padding-top: 6px;
}

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

.legal-card {
  min-height: 220px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    clip-path: none;
  }

  .hero-visual {
    padding: 0;
  }

  .hero-visual > img {
    min-height: 560px;
    clip-path: none;
  }

  .booking-panel {
    width: 100%;
    margin-top: 24px;
  }

  .insight-grid,
  .fleet-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conditions-layout,
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 100%);
    padding-top: 10px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: space-between;
  }

  .hero {
    gap: 12px;
  }

  .hero-copy {
    padding: 22px 20px 28px;
  }

  .hero h1 {
    max-width: none;
    margin-top: 28px;
    font-size: clamp(3rem, 19vw, 4.6rem);
  }

  .hero-track {
    margin-top: 20px;
  }

  .hero-visual > img {
    min-height: 420px;
  }

  .booking-panel {
    margin-top: 18px;
    padding: 16px;
  }

  .panel-grid,
  .data-strip,
  .insight-grid,
  .fleet-grid,
  .steps-grid,
  .conditions-grid,
  .reviews-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 22px 16px 18px;
  }

  .section-heading {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .site-nav a:not(.menu-cta) {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
