:root {
  --paper: #f5fbff;
  --ice: #e9f2ff;
  --sky: #b4dcff;
  --blue: #2551ff;
  --blue-deep: #1430a5;
  --lime: #d9ff47;
  --coral: #ff6140;
  --mint: #c9fff0;
  --line: rgba(17, 31, 68, 0.14);
  --ink: #121a30;
  --muted: #42506d;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(25, 44, 110, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(37, 81, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: rgba(245, 251, 255, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-shell,
.section-shell,
.footer-shell,
.legal-shell {
  width: min(1480px, calc(100vw - 32px));
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Archivo Expanded", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-mark::before {
  content: "";
  width: 20px;
  height: 20px;
  background:
    linear-gradient(135deg, var(--blue) 0 50%, transparent 50%),
    linear-gradient(315deg, var(--lime) 0 50%, transparent 50%);
  border: 2px solid var(--ink);
  transform: rotate(12deg);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-nav a:not(.menu-cta) {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.menu-cta,
.widget-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  font-family: "Archivo Expanded", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 8px 8px 0 var(--blue);
  transform: skewX(-10deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-cta > span,
.widget-button > span {
  transform: skewX(10deg);
}

.menu-cta:hover,
.widget-link:hover .widget-button {
  transform: skewX(-10deg) translate(-2px, -2px);
  box-shadow: 12px 12px 0 var(--blue);
}

main {
  display: block;
}

.hero-panel,
.section,
.site-footer,
.legal-main {
  position: relative;
  width: 100%;
}

.hero-panel {
  overflow: clip;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  padding: clamp(40px, 6vw, 90px) 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(245, 251, 255, 0.94) 0%, rgba(245, 251, 255, 0.78) 42%, rgba(245, 251, 255, 0.84) 100%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 4% 6% 9% auto;
  width: min(36vw, 520px);
  background: linear-gradient(180deg, rgba(37, 81, 255, 0.16), rgba(217, 255, 71, 0.38));
  clip-path: polygon(14% 0, 100% 0, 100% 86%, 78% 100%, 0 100%, 0 18%);
  border: 2px solid rgba(18, 26, 48, 0.1);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-column {
  position: relative;
  width: min(900px, 100%);
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
  padding: clamp(40px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 26, 48, 0.12);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 94% 0, 100% 10%, 100% 100%, 8% 100%, 0 88%);
}

.hero-column::before,
.hero-column::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 2px solid var(--ink);
}

.hero-column::before {
  inset: -18px auto auto -22px;
  width: 140px;
  height: 140px;
  background: rgba(255, 97, 64, 0.18);
  clip-path: polygon(0 14%, 76% 0, 100% 42%, 26% 100%, 0 78%);
}

.hero-column::after {
  inset: auto -34px -28px auto;
  width: 220px;
  height: 120px;
  background: rgba(37, 81, 255, 0.14);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

h1,
h2 {
  margin: 0;
  font-family: "Archivo Expanded", sans-serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-align: center;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 10vw, 7.8rem);
}

h2 {
  width: 100%;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.widget-link {
  width: min(820px, 100%);
  display: grid;
  gap: 20px;
  padding: clamp(18px, 3vw, 24px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(233, 242, 255, 0.94));
  border: 2px solid rgba(18, 26, 48, 0.14);
  box-shadow: 0 18px 44px rgba(18, 26, 48, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 96% 100%, 0 100%);
}

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

.widget-field {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  min-height: 106px;
  text-align: left;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 26, 48, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 92% 100%, 0 100%);
}

.widget-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.widget-value {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.widget-button {
  justify-self: center;
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-shell {
  display: grid;
  gap: 34px;
}

.section-shell::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 26, 48, 0.18), transparent);
}

.section-overview {
  background:
    linear-gradient(180deg, rgba(217, 255, 71, 0.2), transparent 24%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.section-fleet {
  background:
    linear-gradient(180deg, rgba(37, 81, 255, 0.05), transparent 30%),
    #ffffff;
}

.section-deals {
  background:
    linear-gradient(135deg, rgba(37, 81, 255, 0.92), rgba(20, 48, 165, 0.95));
  color: var(--white);
}

.section-steps {
  background:
    linear-gradient(180deg, rgba(255, 97, 64, 0.14), transparent 25%),
    #ffffff;
}

.section-routes {
  background:
    linear-gradient(180deg, rgba(201, 255, 240, 0.75), rgba(233, 242, 255, 0.92));
}

.section-reviews {
  background:
    linear-gradient(180deg, rgba(37, 81, 255, 0.08), rgba(217, 255, 71, 0.1));
}

.section-faq {
  background: #ffffff;
}

.editorial-grid,
.fleet-grid,
.steps-grid,
.reviews-grid {
  display: grid;
  gap: 24px;
}

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

.editorial-card,
.step-card,
.review-card,
.faq-item {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 26, 48, 0.12);
  box-shadow: 0 16px 40px rgba(18, 26, 48, 0.06);
}

.editorial-card {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 94% 100%, 0 100%);
}

.editorial-card:nth-child(2) {
  transform: translateY(18px);
  background: linear-gradient(180deg, rgba(217, 255, 71, 0.32), rgba(255, 255, 255, 0.94));
}

.editorial-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(37, 81, 255, 0.12), rgba(255, 255, 255, 0.94));
}

.editorial-card h3,
.car-card h3,
.deal-strip h3,
.step-card h3,
.route-copy h3,
.review-head strong,
.faq-item summary {
  margin: 0;
  font-family: "Archivo Expanded", sans-serif;
}

.editorial-card p,
.car-card p,
.deal-strip p,
.step-card p,
.route-copy p,
.review-body,
.faq-item p,
.legal-copy p,
.legal-copy li {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
}

.editorial-card,
.car-card,
.deal-strip,
.step-card,
.route-card,
.review-card {
  display: grid;
  gap: 14px;
}

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

.car-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 0 0 24px;
  background: #ffffff;
  border: 1px solid rgba(18, 26, 48, 0.12);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 94% 100%, 0 100%);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 80px rgba(25, 44, 110, 0.2);
}

.car-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.car-card-copy {
  display: grid;
  gap: 12px;
  padding: 0 22px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--ink);
  background: var(--lime);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-value {
  font-family: "Archivo Expanded", sans-serif;
  font-size: 1.05rem;
}

.car-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.car-meta span {
  padding: 7px 10px;
  background: rgba(37, 81, 255, 0.08);
  border: 1px solid rgba(37, 81, 255, 0.12);
}

.deals-layout,
.routes-grid {
  display: grid;
  gap: 26px;
}

.deals-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: stretch;
}

.deals-media {
  overflow: hidden;
  min-height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 90% 100%, 0 100%);
}

.deals-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.deal-strips {
  display: grid;
  gap: 16px;
}

.deal-strip {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 96% 100%, 0 100%);
}

.deal-strip p,
.section-deals .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

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

.step-card {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
}

.step-card:nth-child(2),
.step-card:nth-child(4) {
  transform: translateY(24px);
}

.step-number {
  font-family: "Archivo Expanded", sans-serif;
  font-size: 2.2rem;
  color: var(--blue);
}

.routes-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 26, 48, 0.1);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 95% 100%, 0 100%);
}

.route-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.route-copy {
  display: grid;
  gap: 14px;
  padding: 24px;
}

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

.review-card {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 94% 100%, 0 100%);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.review-meta {
  display: grid;
  gap: 4px;
}

.review-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.faq-item {
  clip-path: polygon(0 0, 100% 0, 100% 88%, 97% 100%, 0 100%);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: rgba(37, 81, 255, 0.08);
  font-size: 1.4rem;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding-top: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(245, 251, 255, 0.92);
}

.footer-shell {
  padding: 22px 0 30px;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
  overflow-x: auto;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--muted);
}

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

.legal-main {
  padding: 72px 0 90px;
}

.legal-shell {
  display: grid;
  gap: 28px;
}

.legal-title {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.legal-copy {
  display: grid;
  gap: 22px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 26, 48, 0.1);
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, 100% 0, 100% 96%, 98% 100%, 0 100%);
}

.legal-copy h2,
.legal-copy h3 {
  text-align: left;
  text-transform: none;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.legal-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.legal-copy h3 {
  margin: 0;
  font-size: 1.15rem;
  font-family: "Archivo Expanded", sans-serif;
}

.legal-copy ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 1180px) {
  .fleet-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-grid,
  .deals-layout,
  .routes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  .header-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-panel {
    min-height: auto;
  }

  .hero-column {
    padding: 32px 22px;
  }

  .widget-grid,
  .fleet-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .editorial-card:nth-child(2),
  .step-card:nth-child(2),
  .step-card:nth-child(4) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .header-shell,
  .section-shell,
  .footer-shell,
  .legal-shell {
    width: min(100vw - 20px, 1480px);
  }

  .header-nav {
    gap: 14px;
  }

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

  .menu-cta,
  .widget-button {
    min-height: 50px;
    width: 100%;
    max-width: 100%;
  }

  .footer-line {
    justify-content: flex-start;
  }

  .legal-copy {
    padding: 24px;
  }
}
