/* Branch Entertainment theme */
:root {
  --bg: #fbf4e3;
  --bg-soft: #f8edd4;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.84);
  --brand: #d9b338;
  --brand-dark: #c59412;
  --brand-ink: #a97705;
  --text: #181716;
  --muted: #6d675d;
  --border: rgba(217, 179, 56, 0.34);
  --shadow: 0 24px 50px rgba(73, 52, 9, 0.08);
  --shadow-strong: 0 28px 70px rgba(73, 52, 9, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.85), rgba(251, 244, 227, 0.96) 38%, rgba(248, 237, 212, 1) 100%);
  overflow-x: hidden;
}

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

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

p {
  color: var(--muted);
}

.container-xxl {
  position: relative;
}

header .container-xxl,
footer .container-xxl {
  width: 100%;
  max-width: none;
}

main .container-xxl {
  width: 80% !important;
  max-width: 1600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

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

.bg-brand {
  background: var(--brand);
}

.bg-cream {
  background: var(--bg);
}

.section {
  padding: 60px 0;
}

.section-tight {
  padding: 44px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
}

.section-title .accent {
  color: var(--brand);
}

.section-title .lead {
  max-width: 800px;
  margin: 0.9rem auto 0;
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  color: var(--brand);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.btn-brand,
.btn-brand-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(217, 179, 56, 0.24);
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-brand-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-brand-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.card-soft {
  background: var(--surface-soft);
  border: 1px solid rgba(217, 179, 56, 0.28);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.ratio-cover {
  position: relative;
  overflow: hidden;
}

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

.top-strip {
  background: var(--brand);
  color: #fff;
  font-size: 0.95rem;
}

.top-strip-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip .strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.top-strip .social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.top-strip .social-links a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.top-strip .social-links a:hover {
  transform: translateY(-1px);
  background: #fff;
}

.site-header {
  position: relative;
  z-index: 50;
}

.navbar-shell {
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease, border-color 0.25s ease;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.4rem, 2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

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

.nav-link {
  font-weight: 500;
  border-radius: 999px;
  padding-left: 1.1rem !important;
  padding-right: 1.1rem !important;
  transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand) !important;
}

.nav-cta {
  margin-left: 0.75rem;
}

.home-page .site-header {
  position: absolute;
  inset-inline: 0;
  top: 0;
}

.home-page .top-strip {
  background: rgba(217, 179, 56, 0.98);
}

.home-page .navbar-shell {
  background: rgba(10, 7, 3, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.home-page .navbar .navbar-brand,
.home-page .navbar .nav-link {
  color: #fff;
}

.home-page .navbar .nav-link.active {
  color: #fff !important;
  background: var(--brand);
  box-shadow: 0 4px 18px rgba(217, 179, 56, 0.45);
}

.home-page .navbar .nav-link:hover:not(.active) {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.home-page .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.45);
}

.home-page .navbar-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.inner-page .site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(251, 244, 227, 0.92);
  border-bottom: 1px solid rgba(217, 179, 56, 0.25);
}

.inner-page .navbar-shell {
  background: transparent;
}

.inner-page .navbar .navbar-brand,
.inner-page .navbar .nav-link {
  color: var(--text);
}

.inner-page .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled {
  background: rgba(251, 244, 227, 0.95);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .navbar .navbar-brand,
.site-header.is-scrolled .navbar .nav-link {
  color: var(--text) !important;
}

.site-header.is-scrolled .navbar .nav-link.active,
.site-header.is-scrolled .navbar .nav-link:hover {
  color: var(--brand) !important;
}

.site-header.is-scrolled .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.2);
}

.site-header.is-scrolled .navbar-toggler .navbar-toggler-icon {
  filter: none;
}

.hero {
  position: relative;
  height: min(980px, 92vh);
  min-height: 760px;
  overflow: hidden;
  background: #1d160e;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item {
  height: 100%;
  min-height: inherit;
}

.hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 9, 3, 0.58) 0%, rgba(14, 9, 3, 0.70) 48%, rgba(14, 9, 3, 0.50) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 132px;
  padding-bottom: 84px;
}

.hero-content .eyebrow {
  margin-bottom: 1rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.hero h1 .accent {
  color: var(--brand);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.65), 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero .hero-copy {
  max-width: 920px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.booking-panel {
  width: min(1200px, calc(100% - 1.5rem));
  margin-top: 2.5rem;
  padding: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.booking-panel .form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1fr auto;
  gap: 0.95rem;
  align-items: center;
}

.booking-panel .field {
  position: relative;
}

.booking-panel .field i {
  position: absolute;
  left: 1.05rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1.05rem;
  z-index: 2;
  pointer-events: none;
}

.booking-panel .form-control,
.booking-panel .form-select {
  min-height: 68px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  padding-left: 3rem;
  box-shadow: none;
  font-weight: 500;
  color: #403b31;
}

.booking-panel .form-control::placeholder,
.booking-panel .form-select {
  color: #7c766c;
}

.booking-panel .btn {
  min-height: 68px;
  min-width: 220px;
  border-radius: 999px;
  font-size: 1.05rem;
}

.hero .carousel-indicators {
  z-index: 4;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.hero .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin: 0;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
}

.hero .carousel-indicators .active {
  width: 28px;
  background: var(--brand);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 4;
  width: 72px;
  opacity: 1;
}

.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  background-size: 48%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero .carousel-control-prev {
  left: 1.2rem;
}

.hero .carousel-control-next {
  right: 1.2rem;
}

.about-image {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
}

.about-copy .title {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2rem, 2.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.about-copy .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem 1.75rem;
  margin-top: 1.5rem;
}

.stat-item .stat-value {
  color: var(--brand);
  font-size: clamp(1.7rem, 2.6vw, 2.65rem);
  font-weight: 700;
  line-height: 1;
}

.stat-item .stat-label {
  margin-top: 0.25rem;
  color: var(--brand);
  font-size: 1.1rem;
  font-weight: 500;
}

.feature-card {
  min-height: 178px;
  padding: 1.9rem 1.25rem;
  text-align: center;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(233, 214, 171, 0.7);
  box-shadow: var(--shadow);
}

.feature-card .icon-box {
  width: 74px;
  height: 62px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f4ecd4;
  color: var(--brand);
  font-size: 1.7rem;
}

.feature-card .feature-title {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-card .feature-copy {
  margin-top: 0.35rem;
  color: var(--muted);
}

.service-card {
  min-height: 176px;
  padding: 2rem 1.25rem;
  text-align: center;
  border-radius: 28px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 18px 40px rgba(171, 128, 3, 0.18);
}

.service-card .icon-box {
  width: 76px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--brand);
  font-size: 1.7rem;
}

.service-card .service-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.service-card .service-copy {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
}

.venue-card {
  position: relative;
  overflow: hidden;
  height: 360px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

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

.venue-card:hover img {
  transform: scale(1.05);
}

.venue-card .label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem 0.95rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.venue-card .label span {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: lowercase;
}

.venue-card .label .arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 1.05rem;
  flex: 0 0 auto;
}

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

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.gallery-card.tall {
  min-height: 390px;
}

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

.gallery-card:hover img {
  transform: scale(1.05);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 232px;
  padding: 1.45rem 1.35rem 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(233, 214, 171, 0.8);
  box-shadow: var(--shadow);
}

.testimonial-card .quote {
  color: var(--brand);
  font-size: 3rem;
  line-height: 0.85;
  margin-bottom: 0.35rem;
}

.testimonial-card .quote-text {
  color: var(--muted);
  line-height: 1.34;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-person .name {
  margin: 0;
  font-weight: 600;
}

.testimonial-person .role {
  margin: 0;
  color: #9d9588;
  font-size: 0.92rem;
}

.stars {
  color: var(--brand);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.callback-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.callback-card,
.map-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.callback-card {
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(233, 214, 171, 0.8);
}

.callback-card .form-control,
.callback-card .form-select {
  min-height: 64px;
  border-radius: 16px;
  border: 1px solid rgba(217, 179, 56, 0.32);
  background: #fff;
  box-shadow: none;
}

.callback-card .form-control::placeholder,
.callback-card .form-select {
  color: #999189;
}

.map-card {
  background: #fff;
  min-height: 100%;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card {
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(233, 214, 171, 0.75);
  box-shadow: var(--shadow);
}

.blog-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.06 / 0.63;
}

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

.blog-card:hover .blog-media img {
  transform: scale(1.05);
}

.date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 48px;
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.blog-body {
  padding: 1.25rem 1.2rem 1.35rem;
}

.blog-title {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand);
  font-weight: 600;
}

.page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #1d160e;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 9, 3, 0.48), rgba(14, 9, 3, 0.58));
  z-index: 1;
}

.page-hero .hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 4rem 1rem 2rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}

.page-hero p {
  max-width: 640px;
  margin: 0.5rem auto 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.content-card {
  padding: 1.5rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(233, 214, 171, 0.75);
  box-shadow: var(--shadow);
}

.footer {
  position: relative;
  overflow: hidden;
  padding-top: 0.8rem;
  background: var(--brand);
  color: #fff;
}

.footer a {
  color: #fff;
}

.footer .social-links {
  display: inline-flex;
  gap: 0.55rem;
}

.footer .social-links a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand);
  transition: transform 0.25s ease;
}

.footer .social-links a:hover {
  transform: translateY(-1px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  max-width: 380px;
  margin-left: auto;
}

.footer-newsletter .form-control {
  min-height: 48px;
  border: 0;
  border-radius: 999px 0 0 999px;
  box-shadow: none;
}

.footer-newsletter .btn {
  min-height: 48px;
  border-radius: 0 999px 999px 0;
  border: 0;
  box-shadow: none;
}

.footer-watermark {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  opacity: 0.16;
  text-align: center;
  user-select: none;
  pointer-events: none;
}

.footer-bottom {
  margin-top: 0.6rem;
  padding: 0.55rem 0 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.anchor-offset {
  scroll-margin-top: 110px;
}

@media (max-width: 1399.98px) {
  .booking-panel .btn {
    min-width: 190px;
  }
}

@media (max-width: 1199.98px) {
  .hero h1 {
    max-width: 940px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 991.98px) {
  main .container-xxl {
    width: calc(100% - 2rem) !important;
  }

  .home-page .site-header {
    position: relative;
  }

  .home-page .navbar .navbar-brand,
  .home-page .navbar .nav-link {
    color: #1e1e1e;
  }

  .top-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.55rem 0;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(251, 244, 227, 0.94);
    border: 1px solid rgba(217, 179, 56, 0.24);
    box-shadow: var(--shadow);
  }

  .home-page .navbar-collapse {
    background: rgba(17, 13, 8, 0.72);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .booking-panel {
    border-radius: 32px;
  }

  .booking-panel .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-panel .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    display: none;
  }

  .about-copy {
    margin-top: 1rem;
  }

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

@media (max-width: 767.98px) {
  main .container-xxl {
    width: calc(100% - 1rem) !important;
  }

  .section {
    padding: 44px 0;
  }

  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 840px;
    min-height: 840px;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 8vw, 3.2rem);
  }

  .hero .hero-copy {
    font-size: 0.98rem;
  }

  .booking-panel {
    width: calc(100% - 1rem);
    border-radius: 26px;
    padding: 0.85rem;
  }

  .booking-panel .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel .btn,
  .booking-panel .form-control,
  .booking-panel .form-select {
    min-height: 60px;
  }

  .feature-card,
  .service-card {
    min-height: auto;
  }

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

  .footer-newsletter {
    margin-left: 0;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .top-strip .strip-item {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .about-copy .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Service card as link */
a.service-card {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.service-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px rgba(171, 128, 3, 0.3);
  color: #fff;
}

/* Gallery lightbox */
.gallery-card {
  cursor: pointer;
}

.gallery-modal-content {
  background: rgba(10, 7, 3, 0.92);
  border: 0;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-modal-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 3rem 4.5rem;
}

.gallery-modal-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.gallery-modal-img.zoomed {
  transform: scale(1.75);
  cursor: zoom-out;
}

.gallery-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-modal-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.32);
}

.gallery-prev {
  left: 0.75rem;
}

.gallery-next {
  right: 0.75rem;
}

.gallery-modal-hint {
  text-align: center;
  padding: 0.6rem 1rem 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

/* Service detail page */
.service-detail-content {
  color: var(--muted);
  line-height: 1.75;
}

.service-sidebar .form-control {
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(217, 179, 56, 0.32);
  background: #fff;
  box-shadow: none;
}

.service-sidebar .form-control::placeholder {
  color: #999189;
}

/* Service listing card (new white style) */
.svc-card {
  padding: 1.75rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 179, 56, 0.28);
  box-shadow: 0 8px 24px rgba(73, 52, 9, 0.07);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(73, 52, 9, 0.13);
  border-color: var(--brand);
  color: var(--text);
}

.svc-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(217, 179, 56, 0.12);
  color: var(--brand);
  font-size: 1.75rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.svc-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.svc-card-copy {
  flex: 1;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.svc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}

.svc-card-cta i {
  font-size: 1.05rem;
  transition: transform 0.2s ease;
}

.svc-card:hover .svc-card-cta i {
  transform: translateX(3px);
}

/* Home page service card "Learn More" hint */
.svc-home-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Service detail page */
.sd-breadcrumb {
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(217, 179, 56, 0.18);
  padding: 0.65rem 0;
}

.sd-breadcrumb .breadcrumb {
  font-size: 0.88rem;
  margin: 0;
}

.sd-breadcrumb .breadcrumb-item a {
  color: var(--brand);
  text-decoration: none;
}

.sd-breadcrumb .breadcrumb-item.active {
  color: var(--muted);
}

.sd-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: var(--muted);
}

.sd-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sd-icon-wrap {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 2.2rem;
  box-shadow: 0 12px 30px rgba(217, 179, 56, 0.3);
}

.sd-title {
  margin: 0.2rem 0 0;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.sd-sub-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--brand);
}

.service-detail-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.service-detail-content {
  color: var(--muted);
  line-height: 1.75;
}

.sd-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 179, 56, 0.28);
  box-shadow: 0 4px 14px rgba(73, 52, 9, 0.05);
}

.sd-highlight i {
  font-size: 1.2rem;
  color: var(--brand);
  flex: 0 0 auto;
}

.sd-highlight p {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
}

/* Process steps */
.sd-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sd-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 179, 56, 0.22);
}

.sd-step-num {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.sd-step strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.sd-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.sd-form-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(217, 179, 56, 0.22);
}

.sd-form-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 1.25rem;
}

.sd-form-title {
  margin: 0.1rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

/* Service detail page */
.sd-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sd-icon-wrap {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 2.2rem;
  box-shadow: 0 12px 30px rgba(217, 179, 56, 0.3);
}

.sd-title {
  margin: 0.2rem 0 0;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.service-detail-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.service-detail-content {
  color: var(--muted);
  line-height: 1.75;
}

.sd-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 179, 56, 0.28);
  box-shadow: 0 6px 20px rgba(73, 52, 9, 0.06);
}

.sd-highlight i {
  font-size: 1.25rem;
  color: var(--brand);
  flex: 0 0 auto;
}

.sd-highlight p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.sd-form-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(217, 179, 56, 0.22);
}

.sd-form-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 1.3rem;
}

.sd-form-title {
  margin: 0.15rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Venue listing page */
.venue-filter-bar {
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(217, 179, 56, 0.18);
  padding: 0.85rem 0;
}

.venue-filter-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.venue-filter-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.venue-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.venue-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 179, 56, 0.3);
  color: var(--text);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.venue-pill:hover,
.venue-pill.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.venue-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  margin-left: auto;
}

.venue-clear:hover {
  color: var(--brand);
}

/* Venue listing card */
.venue-list-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 179, 56, 0.22);
  box-shadow: 0 8px 24px rgba(73, 52, 9, 0.07);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.venue-list-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(73, 52, 9, 0.13);
  color: var(--text);
}

.venue-list-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.venue-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.venue-list-card:hover .venue-list-img img {
  transform: scale(1.06);
}

.venue-list-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 9, 3, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.venue-list-card:hover .venue-list-overlay {
  opacity: 1;
}

.venue-list-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(217, 179, 56, 0.9);
}

.venue-list-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.venue-list-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
  color: var(--text);
}

.venue-list-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.85rem;
  flex: 1;
}

.venue-list-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 1rem;
}

/* Venue CTA banner */
.venue-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem 2.5rem;
  border-radius: 28px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 16px 40px rgba(171, 128, 3, 0.22);
}

.venue-cta-banner h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
}

.venue-cta-banner .accent {
  color: rgba(255, 255, 255, 0.85);
}

.venue-cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.venue-cta-banner .btn-brand {
  background: #fff;
  color: var(--brand-ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.venue-cta-banner .btn-brand:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-dark);
}

/* Venue detail header */
.vd-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.vd-icon-wrap {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 2.2rem;
  box-shadow: 0 12px 30px rgba(217, 179, 56, 0.3);
}

/* booking panel select styling */
.booking-panel .form-control option {
  color: #403b31;
}

/* Venue card location + category badge */
.venue-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: capitalize;
}

.venue-list-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.vd-location {
  font-size: 0.95rem;
  color: var(--brand);
  font-weight: 600;
  margin: 0.2rem 0 0;
}
