:root {
  color-scheme: light;
  --ink: #17191f;
  --muted: #68707a;
  --line: #e5e7eb;
  --surface: #ffffff;
  --soft: #f6f7f9;
  --night: #12141a;
  --green: #23714d;
  --green-dark: #18563a;
  --yellow: #f1b83b;
  --red: #c92e46;
  --shadow: 0 18px 48px rgba(18, 20, 26, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 84px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--surface);
}

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

.topbar {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.84);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 21px;
  font-weight: 950;
}

.brand span {
  color: var(--green);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 850;
}

.topbar__cta {
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  min-height: 640px;
  background: var(--night);
}

.hero__media {
  position: relative;
  min-height: 640px;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 20, 26, 0.08), rgba(18, 20, 26, 0.94)),
    linear-gradient(0deg, rgba(18, 20, 26, 0.28), transparent 45%);
}

.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  align-self: center;
  max-width: 620px;
  padding: 58px 42px 58px 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
}

h3 {
  font-size: 23px;
}

.hero__meta {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.45;
}

.hero__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 28px;
}

.hero__price span,
.hero__price em {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-weight: 820;
}

.hero__price strong {
  font-size: 58px;
  line-height: 1;
}

.hero__copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 950;
}

.button--primary {
  color: #fff;
  background: var(--green);
}

.button--primary:hover {
  background: var(--green-dark);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section__header {
  margin-bottom: 26px;
}

.section__header--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section__header--split > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 760;
}

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

.package-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(18, 20, 26, 0.04);
}

.package-card--featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
}

.package-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.package-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.package-card__body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.package-card__sub {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.package-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft);
  font-size: 12px;
  font-weight: 850;
}

.package-card__price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.price {
  font-size: 30px;
  font-weight: 950;
}

.price span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.included-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.included-band div {
  min-height: 104px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.included-band div:last-child {
  border-right: 0;
}

.included-band strong,
.included-band span {
  display: block;
}

.included-band strong {
  font-size: 18px;
}

.included-band span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
}

.venue-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: stretch;
}

.venue-copy {
  padding: 32px;
  border-radius: 10px;
  color: #fff;
  background: var(--night);
}

.venue-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
}

.route-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.route-cards div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.route-cards strong,
.route-cards span {
  display: block;
}

.route-cards strong {
  font-size: 28px;
}

.route-cards span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
}

.map-shell {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 18px;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.5;
}

.sticky-booking {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 12px 24px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -12px 28px rgba(18, 20, 26, 0.12);
  transform: translateY(0);
  transition: transform 180ms ease;
}

.sticky-booking.is-hidden {
  transform: translateY(110%);
}

.sticky-booking span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.sticky-booking strong {
  display: block;
  margin-top: 3px;
  font-size: 19px;
}

@media (max-width: 980px) {
  .nav,
  .topbar__cta {
    display: none;
  }

  .hero,
  .package-grid,
  .included-band,
  .venue-section,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 340px;
  }

  .hero__media::after {
    background: linear-gradient(0deg, rgba(18, 20, 26, 0.94), rgba(18, 20, 26, 0.08));
  }

  .hero__content {
    max-width: none;
    padding: 34px 22px 46px;
  }

  .section__header--split {
    align-items: start;
    flex-direction: column;
  }

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

  .included-band div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 126px;
  }

  .topbar {
    padding: 0 16px;
  }

  h1 {
    font-size: 46px;
  }

  .hero__price {
    flex-wrap: wrap;
  }

  .hero__actions,
  .package-card__price,
  .route-cards,
  .sticky-booking {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 52px 0;
  }

  .package-card__price {
    display: flex;
  }

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

  .sticky-booking .button {
    width: 100%;
  }
}
