:root {
  --paper: #f4f6f1;
  --ink: #12151f;
  --muted: #5b6473;
  --panel: #ffffff;
  --line: #d8ded6;
  --road: #242a35;
  --green: #0f8f63;
  --blue: #2867e8;
  --amber: #f5a524;
  --coral: #ec5b45;
  --shadow: 0 18px 48px rgba(18, 21, 31, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, auto) 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px clamp(16px, 4vw, 42px);
  background: rgba(244, 246, 241, 0.94);
  border-bottom: 1px solid rgba(18, 21, 31, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(18, 21, 31, 0.16);
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--ink);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(15, 143, 99, 0.24);
}

.cta:hover {
  background: #0b7551;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 21, 31, 0.88), rgba(18, 21, 31, 0.62) 48%, rgba(18, 21, 31, 0.24)),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(290px, 0.62fr);
  gap: 34px;
  align-items: end;
  padding: 86px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: #dbfff1;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 18px 0 0 var(--coral), 36px 0 0 var(--blue);
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.hero-actions,
.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 28px;
}

.trust-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.metric-row {
  align-self: stretch;
}

.metric {
  min-width: 132px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.route-band {
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.route-step {
  min-height: 108px;
  padding: 18px;
  background: var(--panel);
}

.route-step b {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.route-step span {
  color: var(--muted);
  font-size: 14px;
}

section {
  padding: 58px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.section-kicker {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(18, 21, 31, 0.07);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: 18px;
  align-items: stretch;
}

.overview-copy {
  padding: clamp(20px, 3vw, 32px);
}

.overview-copy p {
  margin: 0 0 14px;
  color: #303747;
}

.overview-copy summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 850;
}

.play-shot {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 12px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e8ece4;
}

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

.review {
  min-height: 240px;
  padding: 22px;
}

.review p {
  margin: 12px 0 18px;
  color: #303747;
}

.review footer {
  color: var(--muted);
  font-size: 14px;
}

.stars {
  color: var(--amber);
  letter-spacing: 0;
  white-space: nowrap;
}

.safety-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 1.3fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.safety-panel > div {
  padding: clamp(20px, 3vw, 30px);
  background: var(--panel);
}

.safety-symbol {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 143, 99, 0.92), rgba(40, 103, 232, 0.86)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.16) 18px 21px);
  font-size: 68px;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: 20px;
  align-items: start;
}

.form {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 30px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-message {
  display: none;
  border: 1px solid #8ed5b8;
  border-radius: 8px;
  padding: 12px;
  background: #e6f7ef;
  color: #07533a;
  font-weight: 800;
}

.form-message[data-visible="true"] {
  display: block;
}

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

.legal-card {
  max-width: 900px;
  padding: clamp(22px, 4vw, 42px);
}

.legal-card h1 {
  color: var(--ink);
  font-size: clamp(36px, 5vw, 56px);
}

.legal-card h2 {
  margin-top: 30px;
  font-size: 24px;
}

.legal-card p {
  color: #303747;
}

.footer {
  padding: 30px 0 calc(30px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  margin-right: 14px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.mobile-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-sticky .cta {
  width: 100%;
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .topbar .cta {
    display: none;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner,
  .overview-grid,
  .safety-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery,
  .review-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .gallery img,
  .review {
    min-width: 82%;
    scroll-snap-align: start;
  }

  .mobile-sticky {
    display: block;
  }

  body {
    padding-bottom: 74px;
  }
}

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

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

  .metric {
    flex: 1 1 130px;
  }
}
