:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --ink: #101a2c;
  --muted: #56627a;
  --line: #d9e1ec;
  --brand: #ff5c35;
  --brand-dark: #e24c28;
  --shadow: 0 14px 36px rgba(11, 22, 40, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.45;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #ecf0f6;
  backdrop-filter: blur(8px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}

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

.nav-links {
  margin-left: 1.2rem;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  font-weight: 600;
  color: #2b3952;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn-outline {
  margin-left: auto;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  background: #fff;
}

.btn-primary {
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-small {
  min-height: 40px;
  padding: 0.5rem 0.85rem;
  background: #18253d;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 14, 27, 0.82), rgba(8, 14, 27, 0.46));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 5.8rem;
  padding-bottom: 3.8rem;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffbdad;
}

.hero h1 {
  margin-top: 0.6rem;
  max-width: 700px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
}

.subhead {
  margin-top: 0.85rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
}

.search-box {
  margin-top: 1.7rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr auto;
  gap: 0.55rem;
}

.search-box label {
  border: 1px solid #e5ebf4;
  border-radius: 12px;
  background: #fff;
  min-height: 58px;
  padding: 0.45rem 0.75rem;
  display: grid;
  gap: 0.24rem;
}

.search-box span {
  color: #5a667a;
  font-size: 0.73rem;
  text-transform: uppercase;
  font-weight: 700;
}

.search-box input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
}

.chips {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.chips a {
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
}

.trust-strip {
  background: #14223a;
  color: #f4f7fd;
}

.trust-grid {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.trust-grid p {
  font-size: 0.95rem;
}

.section {
  padding: 4.3rem 0;
}

.section-muted {
  background: #edf2f8;
}

.section-head {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.section-head h2,
.faq-wrap h2,
.final-cta h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.section-head a {
  color: var(--brand-dark);
  font-weight: 700;
}

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

.destination-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(12, 22, 38, 0.1);
  background: #fff;
}

.destination-card.featured {
  grid-column: span 2;
}

.destination-card img {
  height: 220px;
  object-fit: cover;
}

.destination-card div {
  padding: 0.85rem;
}

.destination-card h3 {
  font-size: 1.08rem;
}

.destination-card p {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.tour-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e5ebf4;
}

.tour-card img {
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.card-body h3 {
  font-size: 1.06rem;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.price-row p {
  display: grid;
  gap: 0.12rem;
}

.price-row span {
  font-size: 0.86rem;
  color: #76819a;
  text-decoration: line-through;
}

.price-row strong {
  font-size: 1.3rem;
}

.faq-wrap {
  max-width: 860px;
}

.faq-wrap h2 {
  margin-bottom: 1rem;
}

details {
  background: #fff;
  border: 1px solid #dfe6f2;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.final-cta {
  background: #12233d;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.final-cta p {
  margin: 0.75rem auto 1.3rem;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer {
  background: #0f1a2d;
  color: #d8e2f2;
}

.footer-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-shell a {
  color: #fff;
  font-weight: 700;
}

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

  .search-box {
    grid-template-columns: 1fr;
  }

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

  .destination-card.featured {
    grid-column: span 2;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 0.9rem 0;
  }
}

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

  .hero-content {
    padding-top: 4.8rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .section {
    padding: 3.2rem 0;
  }

  .destination-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .destination-card.featured {
    grid-column: span 1;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-small {
    width: 100%;
  }

  .footer-shell {
    flex-direction: column;
    justify-content: center;
    padding: 0.9rem 0;
  }
}
