:root {
  --ink: #071926;
  --deep: #0d2a35;
  --water: #00a7b5;
  --aqua: #41d9de;
  --lime: #c8fb36;
  --sun: #ffd166;
  --mist: #eefbfb;
  --paper: #ffffff;
  --muted: #5d7077;
  --line: rgba(7, 25, 38, 0.12);
  --shadow: 0 24px 60px rgba(7, 25, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 58px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--water);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
}

.language-link:hover {
  color: var(--ink);
  border-color: rgba(7, 25, 38, 0.28);
}

.header-cta {
  padding: 0 20px;
  color: var(--ink);
  background: var(--lime);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 600px);
  align-items: stretch;
  min-height: 680px;
  padding-top: 76px;
  overflow: hidden;
  background: var(--deep);
}

.hero-media {
  min-height: 604px;
  background:
    linear-gradient(90deg, rgba(7, 25, 38, 0.12), rgba(7, 25, 38, 0.02)),
    url("laval-hero.png") 42% center / cover no-repeat;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 90px);
  color: var(--paper);
  background:
    radial-gradient(circle at 100% 10%, rgba(200, 251, 54, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(13, 42, 53, 0.98), rgba(5, 19, 30, 0.98));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.primary-button,
.secondary-button {
  padding: 0 24px;
}

.primary-button {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 24px rgba(200, 251, 54, 0.18);
}

.secondary-button {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.primary-button:hover,
.secondary-button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.quick-info div {
  padding: clamp(22px, 4vw, 38px) clamp(18px, 5vw, 54px);
  border-right: 1px solid var(--line);
}

.quick-info div:last-child {
  border-right: 0;
}

.quick-info span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 54px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto 38px;
}

.ride-grid,
.detail-list,
.faq-list,
.split {
  max-width: 1180px;
  margin: 0 auto;
}

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

.ride-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(7, 25, 38, 0.06);
}

.ride-label {
  display: inline-block;
  margin: 0 0 46px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--sun);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ride-card p:last-child,
.split p,
.detail-list p,
.faq-list p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split p {
  max-width: 690px;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.price-panel {
  padding: 10px;
  border-radius: 8px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 0 18px;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.price-row strong {
  color: var(--lime);
  font-size: 1.5rem;
}

.details {
  background: linear-gradient(180deg, #ffffff, var(--mist));
}

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

.detail-list div {
  padding-top: 22px;
  border-top: 4px solid var(--water);
}

.faq {
  background: var(--ink);
  color: var(--paper);
}

.faq .section-heading {
  margin-bottom: 24px;
}

.faq-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 1.15rem;
  font-weight: 800;
}

details p {
  max-width: 720px;
  margin: 0 0 24px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 28px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
}

@media (max-width: 860px) {
  .site-header {
    gap: 12px;
    min-height: 68px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 68px;
  }

  .hero-media {
    min-height: 270px;
    background-position: 38% center;
  }

  .hero-content {
    padding: 34px 18px 46px;
  }

  h1 {
    max-width: 10ch;
  }

  .quick-info,
  .ride-grid,
  .detail-list,
  .split,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-info div:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 520px) {
  .site-header {
    gap: 8px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 32px;
  }

  .brand span {
    font-size: 0.85rem;
  }

  .header-actions {
    gap: 6px;
  }

  .language-link {
    min-width: 34px;
    min-height: 34px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 10px;
  }

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

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