:root {
  --navy: #09235a;
  --navy-2: #06183e;
  --gold: #c79a32;
  --gold-soft: #f3e5b9;
  --ink: #17233d;
  --muted: #667085;
  --paper: #fff;
  --sky: #f4f8fc;
  --line: #e5eaf1;
  --shadow: 0 18px 50px rgba(8, 34, 84, .12);
  --radius: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6
}

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

a {
  text-decoration: none
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto
}

.topbar {
  background: var(--navy-2);
  color: #fff;
  font-size: .9rem
}

.topbar .container {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 7px 0;
  opacity: .92
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(9, 35, 90, .08);
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.logo {
  width: 190px;
  height: auto
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  transition: .2s ease;
  border: 1px solid transparent;
  cursor: pointer
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 25px rgba(9, 35, 90, .18)
}

.btn-outline {
  border-color: rgba(9, 35, 90, .2);
  color: var(--navy);
  background: #fff
}

.btn-gold {
  background: var(--gold);
  color: #101828
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 17, 50, .92) 0%, rgba(2, 17, 50, .72) 48%, rgba(2, 17, 50, .18) 100%),
    url("../img/header2.jpg") center/cover no-repeat;
  color: #fff
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(transparent, #fff)
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 84px 0 120px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .09);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: .96;
  margin: 24px 0 20px;
  max-width: 820px;
  font-weight: 700
}

.hero h1 span {
  color: var(--gold-soft)
}

.hero p {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 720px;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 28px
}

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

.section {
  padding: 84px 0
}

.section.intro {
  padding-top: 60px
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center
}

.kicker {
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--gold)
}

.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  color: var(--navy);
  margin: 10px 0 14px
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem
}

.experience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px
}

.pill-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  background: #fff
}

.pill-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px
}

.pill-card span {
  color: var(--muted);
  font-size: .95rem
}

.tours {
  background: var(--sky)
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(9, 35, 90, .08);
  display: flex;
  flex-direction: column
}

.card-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #dde6f3
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.card:hover .card-media img {
  transform: scale(1.035)
}

.badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: rgba(255, 255, 255, .94);
  color: var(--navy);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12)
}

.card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 8px
}

.destination {
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 15px
}

.card p {
  color: var(--muted);
  margin: 0 0 18px
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 20px
}

.fact {
  background: #f8fafc;
  border: 1px solid var(--line);
  padding: 11px 12px;
  border-radius: 13px
}

.fact small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 800
}

.fact strong {
  font-size: .98rem;
  color: var(--ink)
}

.price {
  margin-top: auto;
  padding-top: 6px
}

.price small {
  display: block;
  color: var(--muted)
}

.price strong {
  font-size: 1.55rem;
  color: var(--navy)
}

.card-note {
  font-size: .82rem;
  color: #7a5d18;
  background: #fff8e5;
  border: 1px solid #f0dda0;
  border-radius: 12px;
  padding: 10px 12px;
  margin: 15px 0
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 17px
}

.card-actions .btn {
  padding: 12px 14px;
  font-size: .92rem
}

.included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center
}

.included-box {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: var(--shadow)
}

.included-box h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1.08;
  margin: 0 0 14px
}

.included-box p {
  color: rgba(255, 255, 255, .8)
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.check {
  padding: 15px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px
}

.cta {
  background: #fbf7ec
}

.cta-box {
  border-radius: 30px;
  padding: 44px;
  background: #fff;
  border: 1px solid #eee3c4;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

.cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1.05
}

.cta p {
  margin: 10px 0 0;
  color: var(--muted)
}

footer {
  background: var(--navy-2);
  color: #fff;
  padding: 40px 0
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px
}

.footer-logo {
  width: 180px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25)
}

@media (max-width:900px) {

  .cards,
  .experience {
    grid-template-columns: 1fr
  }

  .included {
    grid-template-columns: 1fr
  }

  .nav-actions .btn-outline {
    display: none
  }

  .hero {
    min-height: 520px;
    background-position: 62% center
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column
  }
}

@media (max-width:620px) {
  .topbar {
    display: none
  }

  .nav {
    min-height: 74px
  }

  .logo {
    width: 154px
  }

  .nav-actions .btn {
    padding: 10px 14px;
    font-size: .86rem
  }

  .hero .container {
    padding: 66px 0 100px
  }

  .section {
    padding: 64px 0
  }

  .card-actions {
    grid-template-columns: 1fr
  }

  .facts {
    grid-template-columns: 1fr
  }

  .checks {
    grid-template-columns: 1fr
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start
  }
}