/* ============================================================
   HOSPITALITY PAGE
   ============================================================ */

.page-hospitality {
  background:
    radial-gradient(circle at top, rgba(196, 141, 38, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f2e8 0%, #f4efe5 100%);
}

.venue-hero {
  position: relative;
  min-height: clamp(760px, 96svh, 980px);
  padding: 116px 0 28px;
  overflow: hidden;
  background: #0d1710;
}

.venue-hero__bg,
.venue-hero__overlay,
.venue-hero__mesh {
  position: absolute;
  inset: 0;
}

.venue-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-hero__overlay {
  background:
    linear-gradient(115deg, rgba(7, 15, 9, 0.92) 0%, rgba(7, 15, 9, 0.66) 48%, rgba(7, 15, 9, 0.82) 100%),
    linear-gradient(180deg, rgba(7, 15, 9, 0.1) 0%, rgba(7, 15, 9, 0.76) 100%);
}

.venue-hero__mesh {
  background:
    radial-gradient(circle at 18% 20%, rgba(243, 198, 109, 0.18), transparent 24%),
    radial-gradient(circle at 78% 16%, rgba(67, 122, 48, 0.16), transparent 20%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.venue-hero__layout,
.venue-hero__metrics {
  position: relative;
  z-index: 1;
}

.venue-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1fr);
  gap: 42px;
  align-items: center;
}

.venue-hero__copy {
  max-width: 620px;
  color: var(--white-on-dark);
}

.venue-hero__eyebrow {
  margin-bottom: 22px;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  color: #fff4de;
  box-shadow: 0 16px 34px rgba(5, 14, 6, 0.18);
  backdrop-filter: blur(18px);
}

.venue-hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.venue-hero h1 span {
  display: block;
  margin-top: 0.18em;
  color: #f3c66d;
  font-style: italic;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 28px rgba(95, 60, 10, 0.24);
}

.venue-hero__copy > p {
  width: min(100%, 56ch);
  margin: 22px 0 0;
  color: rgba(245, 241, 232, 0.84);
  font-size: 1.04rem;
  line-height: 1.74;
}

.venue-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.venue-hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7ea;
  box-shadow: 0 12px 24px rgba(5, 14, 6, 0.16);
}

.venue-hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.venue-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.venue-hero__badges li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 241, 232, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.venue-hero__cluster {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: stretch;
}

.venue-hero__feature,
.venue-hero__mini {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 64px rgba(4, 10, 5, 0.24);
}

.venue-hero__feature {
  min-height: 560px;
}

.venue-hero__feature img,
.venue-hero__mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-hero__feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 11, 0.08) 14%, rgba(9, 18, 11, 0.82) 100%);
}

.venue-hero__feature-meta {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.venue-hero__feature-meta span,
.venue-hero__insight-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  color: #fff5df;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.venue-hero__feature figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 360px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(7, 14, 9, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 241, 232, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.venue-hero__rail {
  display: grid;
  gap: 18px;
}

.venue-hero__insight {
  padding: 26px 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.14), rgba(255, 253, 248, 0.08));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px rgba(4, 10, 5, 0.2);
  backdrop-filter: blur(18px);
}

.venue-hero__insight h2 {
  margin: 16px 0 12px;
  color: var(--white-on-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.venue-hero__insight p {
  margin: 0;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.93rem;
  line-height: 1.64;
}

.venue-hero__insight-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.venue-hero__insight-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  color: rgba(245, 241, 232, 0.88);
  font-size: 0.9rem;
  line-height: 1.54;
}

.venue-hero__insight-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 0.22rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2b050 0%, #b57e20 100%);
}

.venue-hero__mini {
  min-height: 228px;
}

.venue-hero__mini::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 11, 0.06) 24%, rgba(9, 18, 11, 0.74) 100%);
}

.venue-hero__mini figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: rgba(245, 241, 232, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.venue-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.venue-hero__metric {
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.14), rgba(255, 253, 248, 0.08));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 34px rgba(5, 14, 6, 0.14);
  backdrop-filter: blur(18px);
}

.venue-hero__metric strong {
  display: block;
  color: #fff7e8;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.venue-hero__metric span {
  display: block;
  margin-top: 10px;
  color: rgba(245, 241, 232, 0.74);
  font-size: 0.9rem;
  line-height: 1.56;
}

.page-hospitality .fit-card--primary {
  background: linear-gradient(155deg, #111f14 0%, #17350e 58%, #2d240d 100%);
}

.page-hospitality .package-card--featured {
  box-shadow: 0 0 0 1px rgba(41, 98, 22, 0.12), 0 18px 42px rgba(16, 33, 13, 0.08);
}

.page-hospitality .launch-banner__inner {
  background:
    radial-gradient(circle at 18% 20%, rgba(243, 198, 109, 0.14), transparent 24%),
    linear-gradient(135deg, #11220e 0%, #18310f 100%);
}

@media (max-width: 1180px) {
  .venue-hero__layout {
    grid-template-columns: 1fr;
  }

  .venue-hero__copy {
    max-width: none;
  }

  .venue-hero__cluster {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

@media (max-width: 920px) {
  .venue-hero {
    padding-top: 104px;
  }

  .venue-hero__cluster,
  .venue-hero__metrics {
    grid-template-columns: 1fr;
  }

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

  .venue-hero__feature {
    min-height: 480px;
  }
}

@media (max-width: 640px) {
  .venue-hero {
    min-height: auto;
    padding: 100px 0 22px;
  }

  .venue-hero__layout {
    gap: 24px;
  }

  .venue-hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.35rem);
  }

  .venue-hero__copy > p {
    font-size: 0.96rem;
  }

  .venue-hero__actions {
    gap: 12px;
  }

  .venue-hero__actions .btn {
    width: 100%;
  }

  .venue-hero__feature,
  .venue-hero__mini,
  .venue-hero__insight,
  .venue-hero__metric {
    border-radius: 26px;
  }

  .venue-hero__feature {
    min-height: 360px;
  }

  .venue-hero__feature-meta {
    top: 16px;
    left: 16px;
    right: 16px;
  }

  .venue-hero__feature figcaption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    font-size: 0.92rem;
  }

  .venue-hero__rail {
    grid-template-columns: 1fr;
  }

  .venue-hero__mini {
    min-height: 190px;
  }
}
