:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --ink: #111b2e;
  --muted: #58647d;
  --line: #dbe3ee;
  --brand: #ff5c35;
  --brand-dark: #e14b28;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(15, 26, 43, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

.nav-links {
  display: flex;
  gap: 0.85rem;
  color: #31405a;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero {
  min-height: 500px;
}

.detail-hero {
  min-height: 420px;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(9, 15, 26, 0.82), rgba(9, 15, 26, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5.1rem 0 3.4rem;
}

.hero-content h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 760px;
}

.hero-content p {
  margin-top: 0.8rem;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.92);
}

.badge-row {
  margin-top: 1rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.badge-row span {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  font-size: 0.83rem;
  font-weight: 700;
}

.section {
  padding: 3.7rem 0;
}

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

.section-head h2,
.panel h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
}

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

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

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e4eaf3;
  box-shadow: 0 8px 24px rgba(17, 28, 46, 0.08);
}

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

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

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

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

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

.price-row p {
  display: grid;
}

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

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

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

.btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 0.95rem;
}

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

.btn-dark {
  background: #1a2842;
  color: #fff;
  padding: 0.5rem 0.9rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.panel {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e3eaf4;
  padding: 1.05rem;
}

.panel h2 {
  margin-bottom: 0.65rem;
}

.panel p,
.panel li {
  color: var(--muted);
}

.panel ul {
  padding-left: 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.panel + .panel {
  margin-top: 0.8rem;
}

.booking-box {
  position: sticky;
  top: 86px;
}

.booking-box .price {
  font-size: 1.65rem;
  font-weight: 800;
}

.booking-box .from {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  background: #0f1a2e;
  color: #d3dded;
}

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

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

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .booking-box {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 440px;
  }

  .detail-hero {
    min-height: 360px;
  }

  .section {
    padding: 3rem 0;
  }

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

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

  .btn-dark,
  .btn-primary {
    width: 100%;
  }
}
