:root {
  --ink: #121719;
  --muted: #68737a;
  --line: #d9e1df;
  --paper: #ffffff;
  --soft: #f5f8f6;
  --night: #101817;
  --forest: #0e5f4b;
  --emerald: #0f8f6f;
  --gold: #d6a442;
  --coral: #e95f4f;
  --shadow: 0 24px 64px rgba(12, 24, 22, 0.18);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 225, 223, 0.82);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.nav-cta,
.hero-actions,
.trust-strip,
.city-tab {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--night), var(--forest) 54%, var(--gold));
  color: #fff;
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(14, 95, 75, 0.22);
}

.brand strong,
.footer strong {
  display: block;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
}

.nav {
  justify-content: center;
  gap: clamp(16px, 4vw, 44px);
  color: #304048;
  font-size: 0.94rem;
  font-weight: 760;
}

.nav-cta,
.primary-button,
.secondary-button,
.package-card a {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
}

.nav-cta {
  justify-content: center;
  padding: 0 18px;
  background: var(--forest);
  color: #fff;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 8vw, 92px) clamp(18px, 6vw, 90px) 120px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.16) contrast(1.08);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 14, 14, 0.9), rgba(7, 14, 14, 0.64) 46%, rgba(7, 14, 14, 0.18)),
    linear-gradient(180deg, rgba(7, 14, 14, 0.06), rgba(7, 14, 14, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  color: #fff;
}

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

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.55;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
}

.primary-button {
  background: var(--gold);
  color: #121719;
  box-shadow: 0 18px 38px rgba(214, 164, 66, 0.26);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  bottom: 28px;
  left: clamp(18px, 6vw, 90px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: #fff;
  font-weight: 850;
  text-align: center;
}

.trust-strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 6vw, 90px);
  background: var(--night);
}

.trust-strip span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #e8f0ec;
  font-size: 0.9rem;
  font-weight: 780;
}

.section,
.split-section,
.why-section,
.enquiry {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 6vw, 90px);
}

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

.section-heading h2,
.city-copy h2,
.why-section h2,
.enquiry-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.package-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(12, 24, 22, 0.08);
}

.package-card.featured {
  border-color: rgba(214, 164, 66, 0.6);
}

.card-media {
  height: 190px;
  background-position: center;
  background-size: cover;
}

.match-bundle {
  background-image: url("https://images.unsplash.com/photo-1517927033932-b3d18e61fb3a?auto=format&fit=crop&w=900&q=82");
}

.venue-series {
  background-image: url("https://images.unsplash.com/photo-1606925797300-0b35e9d1794e?auto=format&fit=crop&w=900&q=82");
}

.follow-team {
  background-image: url("https://images.unsplash.com/photo-1553778263-73a83bab9b0c?auto=format&fit=crop&w=900&q=82");
}

.final-week {
  background-image: url("https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&w=900&q=82");
}

.card-body {
  padding: 20px;
}

.tag {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef6f1;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.package-card h3,
.experience-grid h3 {
  margin: 14px 0 8px;
  font-size: 1.35rem;
}

.package-card p,
.city-copy p,
.experience-grid p,
.why-list span,
.enquiry-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.whatsapp-number {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 16px;
  border-radius: 8px;
  background: #25d366;
  color: #06281a;
  font-weight: 950;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 18px;
  color: #344249;
}

.package-card a {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--night);
  color: #fff;
  font-size: 0.92rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  background: var(--soft);
}

.city-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.city-tab {
  gap: 10px;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #26343b;
  font-weight: 850;
  text-align: left;
}

.city-tab.active {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.city-tab img {
  width: 30px;
  height: 21px;
  border-radius: 4px;
  object-fit: cover;
}

.city-detail {
  grid-column: 1 / -1;
  min-height: 240px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.city-detail strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(1.4rem, 3vw, 2.25rem);
}

.city-detail p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.city-detail dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.city-detail div {
  min-height: 84px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.city-detail dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.city-detail dd {
  margin: 6px 0 0;
  font-weight: 900;
}

.experience {
  background: #fff;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.experience-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbfa);
}

.experience-grid span {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 950;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 23, 22, 0.95), rgba(15, 95, 75, 0.92)),
    url("https://images.unsplash.com/photo-1489944440615-453fc2b6a9a9?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.why-list {
  display: grid;
  gap: 12px;
}

.why-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.why-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.2rem;
}

.why-list span {
  color: rgba(255, 255, 255, 0.78);
}

.enquiry {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(22px, 5vw, 72px);
  background: #fbfcfb;
}

.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(12, 24, 22, 0.08);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: #2e3b42;
  font-weight: 900;
}

.enquiry-form select,
.enquiry-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #f8fbfa;
  color: var(--ink);
}

.primary-button.full {
  width: 100%;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 6vw, 90px);
  color: #dce8e3;
  background: var(--night);
}

.footer span {
  color: #9eaaa6;
}

.footer a {
  color: var(--gold);
  font-weight: 850;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

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

  .split-section,
  .why-section,
  .enquiry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 690px;
    padding: 48px 16px 142px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .hero-panel {
    right: 14px;
    left: 14px;
    grid-template-columns: 1fr;
  }

  .section,
  .split-section,
  .why-section,
  .enquiry {
    padding-inline: 14px;
  }

  .section-heading {
    display: grid;
  }

  .package-grid,
  .experience-grid,
  .city-board {
    grid-template-columns: 1fr;
  }

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

  .footer {
    display: grid;
  }
}
