:root,
[data-bs-theme="light"] {
    /* Matched to shadibanquet-venue-finder.lovable.app */
    --site-font-heading: "Fraunces", Georgia, serif;
    --site-font-body: "Karla", ui-sans-serif, system-ui, sans-serif;
    --site-primary: #862723;
    --site-primary-dark: #1e130e;
    --site-primary-rgb: 134, 39, 35;
    --site-accent: #ca9c4e;
    --site-accent-soft: #f5eee0;
    --site-gold: #ca9c4e;
    --site-ink: #1e130e;
    --site-bg: #fdfaf4;
    --site-surface: #ffffff;
    --site-surface-muted: #f4f0e7;
    --site-muted: #776559;
    --site-border: #e5ddd0;
    --site-hero-gradient: linear-gradient(145deg, #fdfaf4 0%, #f5eee0 42%, #efe6d8 100%);
    --site-shadow-sm: 0 2px 8px rgba(44, 26, 20, 0.06);
    --site-shadow-md: 0 8px 28px rgba(44, 26, 20, 0.09);
    --site-shadow-lg: 0 18px 48px rgba(44, 26, 20, 0.11);
    --site-shadow-soft: 0 20px 50px -24px rgba(44, 26, 20, 0.35);
    --site-color-primary: #862723;
    --bs-font-sans-serif: var(--site-font-body);
    --bs-body-font-family: var(--site-font-body);
    --bs-primary: #862723;
    --bs-primary-rgb: 134, 39, 35;
    --bs-link-color: #862723;
    --bs-link-hover-color: #1e130e;
    --bs-body-bg: #fdfaf4;
    --bs-body-color: #2c1a14;
    --bs-secondary-color: #776559;
    --bs-border-color: #e5ddd0;
    --bs-border-radius: 0.25rem;
    --bs-border-radius-lg: 0.35rem;
    --bs-border-radius-xl: 0.5rem;
    --bs-card-box-shadow: var(--site-shadow-sm);
}

html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body.site-body {
  font-family: var(--site-font-body);
  margin-bottom: 0;
  color: var(--bs-body-color);
  background-color: var(--site-bg);
  background-image: none;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-family: var(--site-font-heading);
  font-weight: 500;
  color: var(--site-ink);
}

button,
input,
select,
textarea,
.btn,
.form-control,
.form-select,
.nav-link,
.dropdown-menu {
  font-family: var(--site-font-body);
}

.navbar-brand {
  font-family: var(--site-font-heading);
  font-weight: 600;
  color: var(--site-primary) !important;
  letter-spacing: -0.025em;
}

.site-navbar {
  margin-bottom: 0 !important;
  background: color-mix(in srgb, var(--site-bg) 85%, transparent) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--site-border) !important;
  box-shadow: none;
}

.site-navbar .navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.site-navbar .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--site-muted) !important;
  background: transparent !important;
  padding-left: 0.875rem !important;
  padding-right: 0.875rem !important;
  border-radius: var(--bs-border-radius);
  transition: color 0.15s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link:focus-visible {
  color: var(--bs-body-color) !important;
  background: transparent !important;
}

.site-main-wrap {
  padding-top: 1.75rem;
  padding-bottom: 2.5rem;
}

.site-main-wrap:has(main > .site-hero:first-child) {
  padding-top: 0;
}

.site-footer {
  background: linear-gradient(180deg, #f3ece8 0%, #ebe3de 100%);
  border-top: 1px solid var(--bs-border-color) !important;
  color: #5c5254;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.site-footer-brand {
  font-family: var(--site-font-heading);
  font-weight: 700;
  color: var(--site-primary);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.site-footer-tagline {
  color: #6b5f62;
  max-width: 22rem;
}

.site-footer .text-muted {
  color: #6b5f62 !important;
}

.btn-primary {
  --bs-btn-bg: var(--site-primary);
  --bs-btn-border-color: var(--site-primary);
  --bs-btn-hover-bg: var(--site-primary-dark);
  --bs-btn-hover-border-color: var(--site-primary-dark);
  --bs-btn-active-bg: var(--site-primary-dark);
  --bs-btn-active-border-color: var(--site-primary-dark);
  --bs-btn-focus-shadow-rgb: var(--site-primary-rgb);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.5rem 1.25rem;
  border-radius: var(--bs-border-radius-lg);
  box-shadow: 0 2px 8px rgba(var(--site-primary-rgb), 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(var(--site-primary-rgb), 0.28);
}

.btn-dark {
  --bs-btn-bg: #2d2023;
  --bs-btn-border-color: #2d2023;
  --bs-btn-hover-bg: #4a3f42;
  --bs-btn-hover-border-color: #4a3f42;
  border-radius: var(--bs-border-radius-lg);
  font-weight: 600;
}

.form-control,
.form-select {
  border-color: var(--bs-border-color);
  border-radius: var(--bs-border-radius-lg);
  padding: 0.5625rem 0.875rem;
  background-color: var(--site-surface);
}

.form-control:hover,
.form-select:hover {
  border-color: #d9cfc9;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5c5254;
  margin-bottom: 0.35rem;
}

.site-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--site-primary);
  margin-bottom: 0.75rem;
}

.site-page-hero {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  padding: 3rem 1.5rem 3.5rem;
  background: var(--site-hero-gradient);
  border-bottom: 1px solid var(--bs-border-color);
  text-align: center;
}

.site-page-hero .display-6 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
}

.site-page-hero .lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  color: #6b5f62;
  font-size: 1.05rem;
}

.site-home-hero__preline,
.site-home-hero__tagline {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--site-primary);
  font-weight: 600;
}

.site-home-hero__preline {
  margin-bottom: 0.5rem;
}

.site-home-hero__tagline {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .site-home-hero.site-page-hero {
    padding: 1rem 1rem 2.5rem;
    text-align: center;
  }

  .site-home-hero__preline,
  .site-home-hero__tagline {
    font-size: 0.8125rem;
    line-height: 1.45;
    max-width: 18.5rem;
  }

  .site-home-hero__preline {
    margin-bottom: 0.375rem;
  }

  .site-home-hero__title {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .site-home-hero__lead {
    font-size: 0.8125rem;
    line-height: 1.45;
    max-width: 18.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
    color: #6b5f62;
  }

  .site-home-hero__tagline {
    margin-bottom: 0.75rem;
  }

  .site-home-listing.site-main-wrap {
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .site-home-filter-card.mt-n4 {
    margin-top: -1.35rem !important;
  }

  .site-home-filter-card {
    margin-bottom: 0.75rem !important;
  }

  .site-home-filter-card .site-home-filter-card__header {
    display: none;
  }

  .site-home-filter-card .card-body {
    padding: 0.75rem 1rem 0.875rem;
  }

  .site-home-filters-form {
    --bs-gutter-x: 0.625rem;
    --bs-gutter-y: 0.625rem;
  }

  .site-home-filters-form .form-label {
    margin-bottom: 0.2rem;
    font-size: 0.75rem;
  }

  .site-home-filters-form .form-control,
  .site-home-filters-form .form-select {
    padding: 0.4375rem 0.625rem;
    font-size: 0.9375rem;
  }

  .site-home-filters-form .venue-filter-advanced-toggle {
    min-height: 2.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }

  .site-home-filters-form .venue-filter-advanced-toggle::after {
    width: 0.4rem;
    height: 0.4rem;
  }

  .site-home-result-count {
    margin-bottom: 0.625rem !important;
    font-size: 0.8125rem;
  }

  .site-home-listing .venue-infinite-scroll > .row {
    --bs-gutter-y: 0.75rem;
  }

  .site-home-listing .venue-card .card-img-top,
  .site-home-listing .venue-card .venue-card-placeholder {
    height: 140px;
  }

  .site-home-listing .venue-card-body {
    padding: 0.75rem 0.875rem 0.875rem;
  }

  .site-home-listing .venue-card .card-title {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
  }

  .site-home-listing .venue-card-meta {
    margin-bottom: 0.35rem;
  }

  .site-home-listing .venue-meta-pill {
    font-size: 0.6875rem;
    padding: 0.2rem 0.5rem;
  }
}

.site-page-intro {
  padding-top: 0.25rem;
}

.site-page-intro h1 {
  letter-spacing: -0.02em;
}

.site-section-heading {
  font-family: var(--site-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2023;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.venue-video-add-form .col-md-2 {
  min-height: 100%;
}

.venue-gallery-section {
  padding: 1.25rem 1.25rem 1rem;
  border-radius: var(--bs-border-radius-xl);
  background: linear-gradient(180deg, #fdfbfb 0%, #fff 100%);
  border: 1px solid var(--bs-border-color);
  box-shadow: var(--site-shadow-sm);
}

.venue-gallery-heading {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--site-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #2d2023;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #efe8e6;
}

.venue-gallery-heading::before {
  content: "";
  width: 0.25rem;
  height: 1.125rem;
  border-radius: 999px;
  background: var(--site-color-primary, #8b2942);
  flex-shrink: 0;
}

.venue-gallery-section + .venue-gallery-section {
  margin-top: 0.25rem;
}

.venue-gallery-subtext {
  font-size: 0.875rem;
  color: #6b5f62;
  margin: -0.5rem 0 1.25rem;
}

.venue-gallery-hall-group:last-child {
  margin-bottom: 0 !important;
}

.venue-gallery-hall-heading {
  font-family: var(--site-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4a3a3d;
  margin: 0 0 0.75rem;
  padding-left: 0.625rem;
  border-left: 3px solid #d4a574;
}

.venue-image-hall-badge {
  background: #f7efe8;
  color: #6b3a2e;
  border: 1px solid #e8d4c4;
  font-weight: 500;
}

.site-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--bs-border-radius-xl);
  background: var(--site-surface);
  border: 1px dashed var(--bs-border-color);
  color: #6b5f62;
}

.site-result-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  background: var(--site-surface);
  border: 1px solid var(--bs-border-color);
  font-size: 0.8125rem;
  color: #6b5f62;
}

.site-result-count strong {
  color: var(--site-primary);
}

.card.site-filter-card.mt-n4 {
  margin-top: -2.5rem !important;
}

@media (min-width: 768px) {
  .card.site-filter-card.mt-n4 {
    margin-top: -3rem !important;
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem rgba(var(--site-primary-rgb), 0.45);
  border-color: rgba(var(--site-primary-rgb), 0.5);
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.site-hero {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  background: var(--site-hero-gradient);
  border-bottom: 1px solid var(--bs-border-color);
  padding: 3.5rem 1rem 4rem;
}

@media (min-width: 768px) {
  .site-hero {
    padding: 4.5rem 1.5rem 5rem;
  }
}

.site-hero .lead {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.card.site-filter-card {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-xl);
  box-shadow: var(--site-shadow-md);
  background: var(--site-surface);
  overflow: hidden;
}

.card.site-filter-card .card-header {
  font-family: var(--site-font-heading);
  background: linear-gradient(180deg, #fff 0%, #fdf8f6 100%);
  border-bottom: 1px solid var(--bs-border-color);
  padding: 1.125rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2023;
}

.card.site-filter-card .card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.venue-filter-advanced-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--site-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--site-primary);
  background: linear-gradient(180deg, var(--site-surface) 0%, var(--site-accent-soft) 100%);
  border: 1px solid rgba(var(--site-primary-rgb), 0.22);
  border-radius: var(--bs-border-radius-lg);
  box-shadow: var(--site-shadow-sm);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.venue-filter-advanced-toggle::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--site-accent);
  border-bottom: 2px solid var(--site-accent);
  transform: rotate(45deg) translateY(-0.125rem);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.venue-filter-advanced-toggle:hover,
.venue-filter-advanced-toggle:focus-visible {
  color: var(--site-primary-dark);
  background: linear-gradient(180deg, #fff 0%, #f7ede8 100%);
  border-color: rgba(var(--site-primary-rgb), 0.38);
  box-shadow: 0 4px 14px rgba(var(--site-primary-rgb), 0.12);
}

.venue-filter-advanced-toggle:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(var(--site-primary-rgb), 0.18), 0 4px 14px rgba(var(--site-primary-rgb), 0.12);
}

.venue-filter-advanced-toggle.is-open {
  color: #fff;
  background: linear-gradient(145deg, var(--site-primary) 0%, var(--site-primary-dark) 100%);
  border-color: var(--site-primary-dark);
  box-shadow: 0 4px 14px rgba(var(--site-primary-rgb), 0.28);
}

.venue-filter-advanced-toggle.is-open::after {
  border-color: var(--site-accent);
  transform: rotate(-135deg) translateY(0.125rem);
}

.venue-filter-advanced-toggle.is-open:hover,
.venue-filter-advanced-toggle.is-open:focus-visible {
  color: #fff;
  background: linear-gradient(145deg, var(--site-primary-dark) 0%, #5a1a2b 100%);
  border-color: #5a1a2b;
}

@media (max-width: 767.98px) {
  .venue-listing-filters-form .venue-filter-advanced {
    display: none;
  }

  .venue-listing-filters-form.venue-filters-advanced-open .venue-filter-advanced {
    display: block;
  }

  .venue-filter-advanced .row {
    padding-top: 0.25rem;
    border-top: 1px dashed var(--bs-border-color);
  }
}

@media (min-width: 768px) {
  .venue-listing-filters-form .venue-filter-advanced {
    display: block;
  }
}

.venue-card {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  background: var(--site-surface);
  cursor: pointer;
  box-shadow: var(--site-shadow-sm);
}

.venue-card:hover {
  box-shadow: var(--site-shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(var(--site-primary-rgb), 0.18);
}

.venue-card .card-img-top {
  transition: transform 0.35s ease;
}

.venue-card:hover .card-img-top {
  transform: scale(1.03);
}

.venue-card .card-img-top,
.venue-card .venue-card-placeholder {
  height: 220px;
}

.venue-card .venue-card-placeholder {
  background: linear-gradient(135deg, var(--site-surface-muted) 0%, #efe2dc 100%);
}

.venue-card-body {
  padding: 1.125rem 1.25rem 1.25rem;
}

.venue-card .card-title {
  font-family: var(--site-font-heading);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.venue-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.venue-meta-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: var(--site-surface-muted);
  color: #5c5254;
}

.venue-meta-pill--accent {
  background: rgba(var(--site-primary-rgb), 0.08);
  color: var(--site-primary);
}

.venue-pagination .pagination {
  gap: 0.25rem;
  flex-wrap: wrap;
}

.venue-pagination .page-link {
  border-radius: var(--bs-border-radius);
  color: var(--site-primary);
  border-color: var(--bs-border-color);
}

.venue-pagination .page-item.active .page-link {
  background-color: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}

.venue-pagination .page-link:hover {
  background-color: #fdf5f3;
  border-color: var(--site-primary);
  color: #6a1f33;
}

.venue-infinite-sentinel {
  width: 100%;
  height: 1px;
}

.venue-infinite-status {
  letter-spacing: 0.01em;
}

.venue-listing-results.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.venue-name-suggest-list {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  right: 0;
  z-index: 30;
  max-height: 16rem;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-lg);
  box-shadow: var(--site-shadow-md);
}

.venue-name-suggest-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.625rem 0.875rem;
  cursor: pointer;
  border-bottom: 1px solid #f3eeec;
}

.venue-name-suggest-item:last-child {
  border-bottom: 0;
}

.venue-name-suggest-item:hover,
.venue-name-suggest-item.is-active {
  background: #fdf8f9;
}

.venue-name-suggest-item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d2023;
}

.venue-name-suggest-item-meta {
  font-size: 0.75rem;
  color: #6b5f62;
}

.card.site-detail-card {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-xl);
  box-shadow: var(--site-shadow-md);
  background: var(--site-surface);
  overflow: hidden;
}

.card.site-detail-card .card-header {
  font-family: var(--site-font-heading);
  background: linear-gradient(180deg, #fff 0%, #fdf8f6 100%);
  border-bottom: 1px solid var(--bs-border-color);
  font-weight: 600;
  color: #2d2023;
  padding: 1rem 1.25rem;
}

.card.site-detail-card .card-body {
  padding: 1.25rem;
}

.breadcrumb.site-breadcrumb {
  --bs-breadcrumb-divider: "›";
  font-size: 0.8125rem;
  padding: 0.5rem 0.875rem;
  background: var(--site-surface);
  border-radius: 999px;
  border: 1px solid var(--bs-border-color);
  display: inline-flex;
  box-shadow: var(--site-shadow-sm);
}

.breadcrumb.site-breadcrumb a {
  color: var(--site-primary);
  text-decoration: none;
}

.breadcrumb.site-breadcrumb a:hover {
  text-decoration: underline;
}

.venue-availability-body {
  --venue-calendar-width: min(19.25rem, 100%);
}

.venue-calendar-wrap {
  width: var(--venue-calendar-width);
  max-width: 100%;
  margin-inline: auto;
}

#venue-calendar,
#venue-calendar-mobile {
  width: 100%;
}

.venue-calendar-wrap .flatpickr-calendar {
  box-shadow: 0 0.125rem 0.75rem rgba(45, 32, 35, 0.08);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-lg);
}

.flatpickr-calendar.venue-flatpickr {
  transform: none;
  position: relative !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  max-width: 100%;
  margin-inline: auto !important;
}

.venue-flatpickr .flatpickr-innerContainer,
.venue-flatpickr .flatpickr-rContainer,
.venue-flatpickr .flatpickr-days,
.venue-flatpickr .dayContainer {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.flatpickr-calendar.admin-availability-flatpickr {
  transform: scale(0.95);
  transform-origin: top left;
}

.venue-flatpickr .flatpickr-day {
  border-radius: 0.4rem !important;
}

.venue-flatpickr .flatpickr-day.selected,
.venue-flatpickr .flatpickr-day.selected:hover {
  background: var(--site-primary) !important;
  border-color: var(--site-primary-dark) !important;
  color: #fff !important;
}

.venue-flatpickr .flatpickr-day.venue-day-available {
  background: #e8f5e9;
  border-color: #c8e6c9;
  color: #1b5e20;
}

.venue-flatpickr .flatpickr-day.venue-day-available:hover {
  background: #c8e6c9;
}

.venue-flatpickr .flatpickr-day.venue-day-blocked {
  background: #ffebee !important;
  color: #b71c1c !important;
  border-color: #ffcdd2 !important;
}

.venue-cal-swatch {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--bs-border-color);
  vertical-align: middle;
}

.venue-cal-available {
  background: #e8f5e9;
}

.venue-cal-blocked {
  background: #ffebee;
}

.venue-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  width: var(--venue-calendar-width);
  max-width: 100%;
  margin-inline: auto;
}

.venue-calendar-legend > div {
  margin-bottom: 0 !important;
}

.venue-session-toggle {
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--bs-border-color);
}

.venue-session-toggle-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bs-secondary-color);
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.venue-session-toggle-options {
  display: flex;
  gap: 0.125rem;
  padding: 0.1875rem;
  background: #f5ebe8;
  border-radius: 999px;
  border: 1px solid var(--bs-border-color);
}

.venue-session-option {
  flex: 1;
  text-align: center;
  padding: 0.5625rem 0.875rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b5f62;
  line-height: 1.2;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.venue-session-option:hover {
  color: var(--site-primary);
  background: rgba(255, 255, 255, 0.55);
}

.venue-session-option.is-active {
  background: #fff;
  color: var(--site-primary);
  box-shadow: 0 1px 4px rgba(45, 32, 35, 0.1);
}

.venue-session-option:focus-visible {
  outline: 2px solid rgba(var(--site-primary-rgb), 0.45);
  outline-offset: 2px;
}

.venue-availability-result {
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--bs-border-color);
}

.venue-whatsapp-enquiry-wrap {
  margin-top: 1rem;
}

.venue-whatsapp-enquiry,
.sb-enquiry__card {
  background: var(--site-surface);
  border: 0;
  border-radius: 0;
  box-shadow: var(--site-shadow-soft);
  outline: 1px solid var(--site-border);
  overflow: hidden;
}

.sb-enquiry__header {
  padding: 1.75rem 1.75rem 0;
}

.sb-enquiry__title,
.venue-whatsapp-enquiry__title {
  margin: 0;
  display: block;
  font-family: var(--site-font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--site-ink);
}

.sb-enquiry__price,
.venue-whatsapp-enquiry__price {
  margin: 0.45rem 0 0;
  font-family: var(--site-font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--site-ink);
}

.sb-enquiry__lead,
.venue-whatsapp-enquiry__subtitle {
  margin: 0.45rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--site-muted);
}

.sb-enquiry__body,
.venue-whatsapp-enquiry__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem 1.75rem 1.75rem;
}

.sb-enquiry__field,
.venue-whatsapp-enquiry__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.sb-enquiry__label,
.venue-whatsapp-enquiry__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--site-muted);
  font-weight: 600;
}

.sb-enquiry__input,
.venue-whatsapp-enquiry__date,
.venue-whatsapp-enquiry__hall,
.venue-whatsapp-enquiry__guests {
  min-height: 2.75rem;
  border-radius: 0.25rem;
  border-color: var(--site-border);
  background: #fff;
}

.sb-enquiry__input:focus,
.venue-whatsapp-enquiry__date:focus,
.venue-whatsapp-enquiry__hall:focus,
.venue-whatsapp-enquiry__guests:focus {
  border-color: var(--site-primary);
  box-shadow: 0 0 0 0.2rem rgba(134, 39, 35, 0.12);
}

.venue-whatsapp-enquiry__session,
.sb-enquiry__session {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.sb-enquiry__cta,
.venue-whatsapp-enquiry__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.15rem;
  border: 0;
  border-radius: 0.25rem;
  background: var(--site-primary);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
  box-shadow: none;
}

.sb-enquiry__cta:hover:not(:disabled),
.sb-enquiry__cta:focus-visible:not(:disabled),
.venue-whatsapp-enquiry__cta:hover:not(:disabled),
.venue-whatsapp-enquiry__cta:focus-visible:not(:disabled) {
  background: #6f1f1c;
  color: #fff;
  box-shadow: none;
}

.sb-enquiry__cta:disabled,
.venue-whatsapp-enquiry__cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.sb-enquiry__note {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--site-muted);
  text-align: center;
}

.venue-whatsapp-enquiry__cta-icon {
  display: none;
}

@media (min-width: 992px) {
  .venue-detail-sidebar .venue-whatsapp-enquiry-wrap {
    margin-top: 1rem;
  }
}

.venue-availability-modal .modal-content {
  border-radius: 1rem;
  overflow: hidden;
}

.venue-availability-modal__header {
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 0;
}

.venue-availability-modal__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.venue-availability-modal__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(134, 39, 35, 0.12);
  color: var(--site-primary);
}

.venue-availability-modal__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.venue-availability-modal__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--site-primary);
  margin: 0;
}

.venue-availability-modal__body {
  padding: 0.75rem 1.25rem 0;
}

.venue-availability-modal__date {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--site-primary);
  line-height: 1.3;
}

.venue-availability-modal__summary {
  color: #4a4043;
  line-height: 1.5;
  margin-bottom: 0;
}

.venue-availability-modal__hall-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.venue-availability-modal__hall-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bs-secondary-color);
  font-weight: 600;
}

.venue-availability-modal__hall-name {
  font-weight: 600;
  color: var(--site-primary);
}

.venue-availability-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1rem 1.25rem 1.25rem;
}

.venue-availability-modal__btn-call,
.venue-availability-modal__btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  border-radius: 999px;
  font-weight: 700;
  width: 100%;
  margin: 0;
}

.venue-availability-modal__btn-call {
  background: #fff;
  border: 1.5px solid var(--site-primary);
  color: var(--site-primary);
}

.venue-availability-modal__btn-call:hover,
.venue-availability-modal__btn-call:focus-visible {
  background: rgba(var(--site-primary-rgb), 0.06);
  border-color: var(--site-primary);
  color: var(--site-primary);
}

.venue-availability-modal__btn-whatsapp {
  background: var(--site-primary);
  border: 0;
  color: #fff;
  box-shadow: none;
}

.venue-availability-modal__btn-whatsapp:hover,
.venue-availability-modal__btn-whatsapp:focus-visible {
  background: #6f1f1c;
  color: #fff;
  box-shadow: none;
}

.venue-availability-modal__btn-icon {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
  flex-shrink: 0;
}

@media (min-width: 576px) {
  .venue-availability-modal__actions {
    flex-direction: row;
  }

  .venue-availability-modal__btn-call,
  .venue-availability-modal__btn-whatsapp {
    flex: 1;
  }
}

.admin-cal-selected {
  background: var(--site-primary);
  border-color: var(--site-primary-dark);
}

.admin-availability-flatpickr .flatpickr-day.selected {
  background: var(--site-primary) !important;
  border-color: var(--site-primary-dark) !important;
  color: #fff !important;
}

.admin-availability-flatpickr .flatpickr-day.selected:hover {
  background: var(--site-primary-dark) !important;
}

/* Admin availability: reserved/blocked days (flatpickr-disabled + venue-day-blocked) */
.admin-availability-flatpickr .flatpickr-day.venue-day-blocked,
.admin-availability-flatpickr .flatpickr-day.flatpickr-disabled.venue-day-blocked {
  background: #b71c1c !important;
  color: #ffffff !important;
  border-color: #8e0000 !important;
  opacity: 1 !important;
  font-weight: 600;
}

.admin-availability-reserve .venue-cal-blocked {
  background: #b71c1c;
  border-color: #8e0000;
}

/* Past dates: still visible (Flatpickr fades disabled days by default) */
.venue-flatpickr .flatpickr-day.cal-day-past,
.admin-availability-flatpickr .flatpickr-day.cal-day-past {
  opacity: 1 !important;
  background: #eceff1 !important;
  color: #455a64 !important;
  border-color: #cfd8dc !important;
  font-weight: 600;
}

.venue-flatpickr .flatpickr-day.cal-day-past.venue-day-blocked,
.admin-availability-flatpickr .flatpickr-day.cal-day-past.venue-day-blocked {
  background: #b71c1c !important;
  color: #ffffff !important;
  border-color: #8e0000 !important;
}

/* Days from previous/next month (padding cells in the grid) */
.venue-flatpickr .flatpickr-day.prevMonthDay:not(.venue-day-blocked):not(.cal-day-past),
.venue-flatpickr .flatpickr-day.nextMonthDay:not(.venue-day-blocked):not(.cal-day-past),
.admin-availability-flatpickr .flatpickr-day.prevMonthDay:not(.venue-day-blocked):not(.cal-day-past),
.admin-availability-flatpickr .flatpickr-day.nextMonthDay:not(.venue-day-blocked):not(.cal-day-past) {
  background: #f5f5f5 !important;
  color: #78909c !important;
  border-color: #e0e0e0 !important;
  opacity: 1 !important;
  font-weight: 500;
}

.venue-flatpickr .flatpickr-day.prevMonthDay.cal-day-past:not(.venue-day-blocked),
.venue-flatpickr .flatpickr-day.nextMonthDay.cal-day-past:not(.venue-day-blocked),
.admin-availability-flatpickr .flatpickr-day.prevMonthDay.cal-day-past:not(.venue-day-blocked),
.admin-availability-flatpickr .flatpickr-day.nextMonthDay.cal-day-past:not(.venue-day-blocked) {
  background: #eceff1 !important;
  color: #607d8b !important;
}

.venue-flatpickr .flatpickr-day.prevMonthDay.venue-day-available,
.venue-flatpickr .flatpickr-day.nextMonthDay.venue-day-available {
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
  border-color: #c8e6c9 !important;
}

.admin-availability-flatpickr .flatpickr-day.prevMonthDay.selected,
.admin-availability-flatpickr .flatpickr-day.nextMonthDay.selected {
  background: var(--site-primary) !important;
  color: #fff !important;
  border-color: var(--site-primary-dark) !important;
}

/* Venue detail (profile + portfolio + sticky calendar) */
.venue-detail-header h1 {
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.venue-detail-location-block {
  margin-bottom: 1rem;
}

.venue-detail-location {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  color: #6b5f62;
}

.venue-detail-address {
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  color: #6b5f62;
  line-height: 1.45;
}

.venue-detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.venue-stat-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.625rem 1rem;
  border-radius: var(--bs-border-radius-lg);
  background: var(--site-surface);
  border: 1px solid var(--bs-border-color);
  box-shadow: var(--site-shadow-sm);
  min-width: 7rem;
}

.venue-stat-chip-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6b5f62;
}

.venue-stat-chip-value {
  font-family: var(--site-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #2d2023;
  line-height: 1.2;
}

.venue-about-body,
.venue-detail-section {
  padding: 1.25rem 1.375rem;
  border-radius: var(--bs-border-radius-xl);
  background: var(--site-surface);
  border: 1px solid var(--bs-border-color);
  box-shadow: var(--site-shadow-sm);
}

.venue-amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.venue-amenity-tag {
  display: inline-block;
  padding: 0.4375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--site-primary);
  background: rgba(var(--site-primary-rgb), 0.07);
  border: 1px solid rgba(var(--site-primary-rgb), 0.12);
}

.venue-detail-section h2 {
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
}

/* Admin / venue-admin shells */
.admin-shell {
  font-family: var(--site-font-body);
  background: var(--site-bg);
  min-height: 100vh;
}

.admin-shell .navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: var(--site-shadow-sm);
  border-bottom: 1px solid var(--bs-border-color) !important;
}

.admin-shell .navbar-brand {
  font-family: var(--site-font-heading);
  font-weight: 700;
  color: var(--site-primary) !important;
}

.admin-shell .nav-link {
  font-weight: 500;
  color: #4a3f42;
  border-radius: var(--bs-border-radius);
}

.admin-shell .nav-link:hover {
  color: var(--site-primary);
  background: rgba(var(--site-primary-rgb), 0.06);
}

.admin-shell .nav-link.border-0 {
  font-weight: 500;
  color: #4a3f42;
}

.admin-shell .nav-link.border-0:hover {
  color: var(--site-primary);
  background: rgba(var(--site-primary-rgb), 0.06);
}

.admin-shell .table {
  background: var(--site-surface);
  border-radius: var(--bs-border-radius-lg);
  overflow: hidden;
  box-shadow: var(--site-shadow-sm);
}

.admin-shell .border.rounded {
  border-color: var(--bs-border-color) !important;
  border-radius: var(--bs-border-radius-xl) !important;
  background: var(--site-surface);
  box-shadow: var(--site-shadow-sm);
}

.venue-image-sort-item {
  cursor: grab;
}

.venue-image-sort-item.is-dragging {
  opacity: 0.55;
  cursor: grabbing;
}

.venue-image-sort-item.drag-over .venue-image-sort-card {
  outline: 2px dashed var(--site-color-primary, #8b2942);
  outline-offset: 2px;
}

.venue-image-sort-card {
  position: relative;
  overflow: hidden;
}

.venue-image-sort-thumb {
  height: 160px;
  object-fit: cover;
}

.venue-image-sort-handle {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  padding: 0.125rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  color: #fff;
  background: rgba(45, 32, 35, 0.72);
  border-radius: var(--bs-border-radius-sm);
  pointer-events: none;
}

.venue-image-sort-index {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: rgba(45, 32, 35, 0.72);
  border-radius: 999px;
  pointer-events: none;
}

.venue-admin-disclaimer-modal .modal-content {
  border: 0;
  border-radius: var(--bs-border-radius-xl);
  box-shadow: 0 1.25rem 3rem rgba(45, 32, 35, 0.18);
  overflow: hidden;
}

.venue-admin-disclaimer-eyebrow {
  display: inline-block;
  margin-bottom: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-color-primary, #8b2942);
}

.venue-admin-disclaimer-intro {
  color: #6b5f62;
  font-size: 0.9375rem;
}

.venue-admin-disclaimer-body {
  display: grid;
  gap: 0.875rem;
}

.venue-admin-disclaimer-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--bs-border-radius-lg);
  background: linear-gradient(180deg, #fdfbfb 0%, #fff 100%);
  border: 1px solid #efe8e6;
}

.venue-admin-disclaimer-item-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--site-color-primary, #8b2942);
  background: rgba(139, 41, 66, 0.1);
}

.venue-admin-disclaimer-item p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #3d3336;
}

.venue-admin-disclaimer-check {
  padding: 0.875rem 1rem;
  border-radius: var(--bs-border-radius-lg);
  background: #faf7f6;
  border: 1px solid #efe8e6;
}

.venue-admin-disclaimer-check .form-check-label {
  font-size: 0.875rem;
  line-height: 1.45;
  color: #3d3336;
}

/* Venue detail (profile + portfolio + sticky calendar) */
.venue-detail-page {
  align-items: flex-start;
}

.venue-phone-block {
  padding: 0.75rem 1rem;
  border-radius: var(--bs-border-radius-lg);
  border: 1px solid var(--bs-border-color);
  background: linear-gradient(135deg, #fffdfb 0%, #fdf5f3 100%);
  box-shadow: 0 0.125rem 0.5rem rgba(45, 32, 35, 0.06);
}

.venue-phone-label {
  display: block;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.venue-phone-number {
  display: inline-block;
  font-family: var(--site-font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #2d2023;
  line-height: 1.3;
  text-decoration: none !important;
}

a.venue-phone-number:hover,
a.venue-phone-number:focus-visible {
  color: var(--site-primary) !important;
}

.venue-phone-secondary {
  display: block;
}

.venue-phone-secondary-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.venue-phone-secondary-value {
  display: inline-block;
  font-family: var(--site-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #5c5254;
  text-decoration: none !important;
}

a.venue-phone-secondary-value:hover,
a.venue-phone-secondary-value:focus-visible {
  color: var(--site-primary) !important;
  text-decoration: underline !important;
}

.venue-detail-hero {
  overflow: visible;
}

.venue-detail-hero-img {
  display: block;
  border-radius: var(--bs-border-radius-xl);
  max-height: min(52vh, 520px);
  object-fit: cover;
  aspect-ratio: 16 / 10;
  box-shadow: var(--site-shadow-md);
}

.venue-detail-hero-trigger {
  border-radius: var(--bs-border-radius-xl);
  overflow: hidden;
  cursor: zoom-in;
}

.venue-detail-hero-placeholder {
  min-height: 280px;
  background: linear-gradient(135deg, #f5ebe8 0%, #efe2dc 100%);
  border: 1px dashed var(--bs-border-color);
}

.venue-detail-sidebar {
  top: 1rem;
  z-index: 1;
}

.venue-portfolio-thumb {
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  background: #f0eae7;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.venue-portfolio-thumb:hover {
  transform: scale(1.02);
  box-shadow: 0 0.35rem 1rem rgba(45, 32, 35, 0.12);
}

.venue-portfolio-thumb:focus-visible {
  outline: 2px solid var(--site-primary);
  outline-offset: 2px;
}

.venue-portfolio-video iframe {
  border: 0;
  width: 100%;
  height: 100%;
  background: #111;
}

@media (max-width: 767.98px) {
  .venue-video-add-form .col-md-2 {
    justify-content: stretch !important;
  }

  .venue-gallery-section {
    padding: 1rem;
  }
}

.venue-photo-modal-body {
  min-height: 50vh;
  touch-action: pan-y pinch-zoom;
}

.venue-photo-modal-img {
  max-height: min(78vh, 900px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

.venue-photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-decoration: none !important;
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0.85;
}

.venue-photo-nav:hover {
  opacity: 1;
  color: #fff !important;
}

.venue-photo-prev {
  left: 0;
}

.venue-photo-next {
  right: 0;
}

@media (max-width: 991.98px) {
  .venue-detail-sidebar {
    position: static !important;
  }
}

/* Auth (login) */
.site-auth-body {
  background-color: var(--site-bg);
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -15%, rgba(139, 41, 66, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(196, 165, 116, 0.08), transparent 50%);
}

.site-auth-main {
  display: flex;
  align-items: center;
  padding: 2.5rem 0 3rem;
}

.site-auth-wrap {
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
}

.site-auth-intro {
  margin-bottom: 1.75rem;
}

.site-auth-intro h1 {
  letter-spacing: -0.02em;
}

.site-auth-card {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-xl);
  box-shadow: var(--site-shadow-md);
  background: var(--site-surface);
  overflow: hidden;
}

.site-auth-card .card-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.site-auth-back a {
  color: var(--site-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.site-auth-back a:hover {
  color: var(--site-primary-dark);
}

.password-field {
  position: relative;
}

.password-field-input {
  padding-right: 2.85rem;
}

.password-field-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0.4rem;
  color: var(--bs-secondary-color);
  display: inline-flex;
  justify-content: center;
  line-height: 0;
  padding: 0.4rem;
  position: absolute;
  right: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.password-field-toggle:hover {
  background-color: var(--site-surface-muted);
  color: var(--site-primary);
}

.password-field-toggle:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(var(--site-primary-rgb), 0.2);
  outline: 0;
}

.password-icon {
  display: block;
}

.venue-verified-badge {
  color: var(--site-primary);
  display: inline-block;
  max-width: 100%;
  pointer-events: auto;
}

.venue-verified-badge-shell {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(243, 235, 224, 0.96));
  border: 1px solid rgba(var(--site-primary-rgb), 0.22);
  border-radius: 999px;
  box-shadow:
    0 4px 18px rgba(45, 32, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  display: inline-flex;
  gap: 0.42rem;
  max-width: 11.5rem;
  overflow: hidden;
  padding: 0.4rem 0.7rem 0.4rem 0.45rem;
  position: relative;
  transition:
    width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.45s ease,
    box-shadow 0.45s ease,
    gap 0.45s ease;
  white-space: nowrap;
}

.venue-verified-badge-mark {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
}

.venue-verified-badge-mark--compact {
  display: none;
}

.venue-verified-badge-icon {
  display: block;
  flex-shrink: 0;
  height: 1.15rem;
  width: 1.15rem;
}

.venue-verified-badge-shield-fill {
  fill: rgba(var(--site-primary-rgb), 0.12);
}

.venue-verified-badge-shield-stroke {
  fill: none;
  stroke: var(--site-primary);
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.venue-verified-badge-check {
  fill: none;
  stroke: var(--site-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.venue-verified-badge-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
  min-width: 0;
  opacity: 1;
  transition: opacity 0.35s ease, max-width 0.45s ease, margin 0.45s ease;
}

.venue-verified-badge-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.88;
  text-transform: uppercase;
}

.venue-verified-badge-brand {
  font-family: var(--site-font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.venue-verified-badge--overlay .venue-verified-badge-shell {
  backdrop-filter: blur(10px);
}

.venue-verified-badge--motion .venue-verified-badge-shell {
  animation: venue-verified-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes venue-verified-enter {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.venue-verified-badge--motion.is-compact {
  cursor: pointer;
}

.venue-verified-badge--motion.is-compact .venue-verified-badge-shell {
  align-items: center;
  background: radial-gradient(circle at 30% 25%, #a33452 0%, var(--site-primary) 42%, var(--site-primary-dark) 100%);
  border-color: rgba(196, 165, 116, 0.55);
  border-radius: 50%;
  box-shadow:
    0 6px 18px rgba(var(--site-primary-rgb), 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  gap: 0;
  height: 2.35rem;
  justify-content: center;
  max-width: 2.35rem;
  min-width: 2.35rem;
  padding: 0;
  width: 2.35rem;
}

.venue-verified-badge--motion.is-compact .venue-verified-badge-copy {
  height: 0;
  margin: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  width: 0;
}

.venue-verified-badge--motion.is-compact .venue-verified-badge-mark--expanded {
  display: none;
}

.venue-verified-badge--motion.is-compact .venue-verified-badge-mark--compact {
  display: inline-flex;
}

.venue-verified-badge-icon--compact {
  height: 1.35rem;
  width: 1.35rem;
}

.venue-verified-badge-compact-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.6;
}

.venue-verified-badge-compact-check {
  fill: none;
  stroke: var(--site-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.venue-verified-badge--motion.is-compact .venue-verified-badge-shield-fill {
  fill: rgba(255, 255, 255, 0.16);
}

.venue-verified-badge--motion.is-compact .venue-verified-badge-shield-stroke {
  stroke: #fff;
}

.venue-verified-badge--motion.is-compact .venue-verified-badge-check {
  stroke: var(--site-accent);
}

.venue-verified-badge--motion.is-compact:hover .venue-verified-badge-shell,
.venue-verified-badge--motion.is-compact:focus-within .venue-verified-badge-shell,
.venue-verified-badge--motion.is-expanded-manual .venue-verified-badge-shell {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 235, 224, 0.97));
  border-color: rgba(var(--site-primary-rgb), 0.24);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(45, 32, 35, 0.14);
  gap: 0.42rem;
  height: auto;
  max-width: 11.5rem;
  min-width: 0;
  padding: 0.4rem 0.7rem 0.4rem 0.45rem;
  width: auto;
}

.venue-verified-badge--motion.is-compact:hover .venue-verified-badge-mark--expanded,
.venue-verified-badge--motion.is-compact:focus-within .venue-verified-badge-mark--expanded,
.venue-verified-badge--motion.is-expanded-manual .venue-verified-badge-mark--expanded {
  display: inline-flex;
}

.venue-verified-badge--motion.is-compact:hover .venue-verified-badge-mark--compact,
.venue-verified-badge--motion.is-compact:focus-within .venue-verified-badge-mark--compact,
.venue-verified-badge--motion.is-expanded-manual .venue-verified-badge-mark--compact {
  display: none;
}

.venue-verified-badge--motion.is-compact:hover .venue-verified-badge-copy,
.venue-verified-badge--motion.is-compact:focus-within .venue-verified-badge-copy,
.venue-verified-badge--motion.is-expanded-manual .venue-verified-badge-copy {
  height: auto;
  margin-left: 0;
  max-width: 8rem;
  opacity: 1;
  position: static;
  width: auto;
}

.venue-verified-badge--motion.is-compact:hover .venue-verified-badge-shield-fill,
.venue-verified-badge--motion.is-compact:focus-within .venue-verified-badge-shield-fill,
.venue-verified-badge--motion.is-expanded-manual .venue-verified-badge-shield-fill {
  fill: rgba(var(--site-primary-rgb), 0.12);
}

.venue-verified-badge--motion.is-compact:hover .venue-verified-badge-shield-stroke,
.venue-verified-badge--motion.is-compact:focus-within .venue-verified-badge-shield-stroke,
.venue-verified-badge--motion.is-expanded-manual .venue-verified-badge-shield-stroke {
  stroke: var(--site-primary);
}

.venue-verified-media-badge {
  max-width: calc(100% - 0.85rem);
  pointer-events: none;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  z-index: 3;
}

.venue-verified-media-badge .venue-verified-badge {
  pointer-events: auto;
}

.venue-verified-media-badge--hero {
  max-width: min(15rem, calc(100% - 1.5rem));
  overflow: visible;
  pointer-events: none;
  right: 0.85rem;
  top: 0.85rem;
  z-index: 6;
}

.venue-verified-badge--hero .venue-verified-badge-shell {
  max-width: 14rem;
  overflow: visible;
}

.venue-verified-badge--hero.venue-verified-badge--motion:not(.is-compact) .venue-verified-badge-shell,
.venue-verified-badge--hero.venue-verified-badge--motion.is-expanded-manual .venue-verified-badge-shell,
.venue-verified-badge--hero.venue-verified-badge--motion.is-compact:hover .venue-verified-badge-shell,
.venue-verified-badge--hero.venue-verified-badge--motion.is-compact:focus-within .venue-verified-badge-shell {
  height: auto;
  max-width: 14rem;
  min-width: 10.5rem;
  overflow: visible;
  width: auto;
}

.venue-verified-media-badge--hero .venue-verified-badge-brand {
  font-size: 0.82rem;
}

.venue-verified-media-badge--hero .venue-verified-badge-shell {
  max-width: 14rem;
}

.venue-verified-media-badge--hero .venue-verified-badge--motion.is-compact .venue-verified-badge-shell {
  height: 2.55rem;
  max-width: 2.55rem;
  min-width: 2.55rem;
  width: 2.55rem;
}

.venue-verified-media-badge--hero .venue-verified-badge-icon--compact {
  height: 1.45rem;
  width: 1.45rem;
}

.venue-verified-media-badge--hero .venue-verified-badge-icon {
  height: 1.25rem;
  width: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  .venue-verified-badge--motion .venue-verified-badge-shell {
    animation: none;
  }
}

.venue-card-media .card-img-top,
.venue-card-media .venue-card-placeholder {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

/* Venue admin year overview calendar */
.venue-admin-year-overview {
  border-color: var(--bs-border-color) !important;
  border-radius: var(--bs-border-radius-xl) !important;
  background: var(--site-surface);
  box-shadow: var(--site-shadow-sm);
}

.venue-admin-year-cal-wrap {
  overflow: visible;
}

.venue-admin-year-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.venue-admin-mini-month {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-lg);
  background: #fff;
  padding: 0.75rem;
  min-width: 0;
}

.venue-admin-mini-month-title {
  font-family: var(--site-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2d2023;
  text-align: center;
  margin-bottom: 0.625rem;
}

.venue-admin-mini-month-weekdays,
.venue-admin-mini-month-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.2rem;
}

.venue-admin-mini-month-weekdays {
  margin-bottom: 0.35rem;
}

.venue-admin-mini-month-weekdays span {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b5f62;
  text-align: center;
  padding: 0.125rem 0;
}

.venue-admin-mini-day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  line-height: 1;
}

.venue-admin-mini-day.is-empty {
  visibility: hidden;
}

.venue-admin-mini-day.venue-day-available {
  background: #e8f5e9;
  border-color: #c8e6c9;
  color: #1b5e20;
}

.venue-admin-mini-day.venue-day-blocked {
  background: #ffebee !important;
  color: #b71c1c !important;
  border-color: #ffcdd2 !important;
}

.venue-admin-mini-day.cal-day-past {
  background: #eceff1 !important;
  color: #455a64 !important;
  border-color: #cfd8dc !important;
}

.cal-day-past-swatch {
  background: #eceff1;
  border-color: #cfd8dc;
}

button.venue-session-option {
  border: none;
  background: transparent;
}

button.venue-session-option.is-active {
  background: #fff;
}

@media (max-width: 991.98px) {
  .venue-admin-year-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .venue-admin-year-grid {
    grid-template-columns: 1fr;
  }
}

/* Venue admin dashboard & bookings */
.venue-admin-dashboard-hero {
  padding: 0.25rem 0 0.5rem;
}

.venue-admin-dashboard-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-color-primary, #8b2942);
}

.venue-admin-dashboard-title {
  font-family: var(--site-font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.venue-admin-panel {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-xl);
  background: var(--site-surface);
  box-shadow: var(--site-shadow-sm);
  overflow: hidden;
}

.venue-admin-panel-header {
  padding: 1rem 1.25rem 0;
}

.venue-admin-panel-title {
  font-family: var(--site-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #2d2023;
}

.venue-admin-panel-subtitle {
  font-size: 0.875rem;
  color: #6b5f62;
}

.venue-admin-panel-body {
  padding: 1rem 1.25rem 1.25rem;
}

.venue-admin-stat-panel .venue-admin-panel-body {
  padding-top: 1.25rem;
}

.venue-admin-stat-value {
  font-family: var(--site-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--site-color-primary, #8b2942);
}

.venue-admin-stat-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2d2023;
  margin-top: 0.35rem;
}

.venue-admin-quick-links {
  display: grid;
  gap: 0.5rem;
}

.venue-admin-quick-links a {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: var(--bs-border-radius-lg);
  border: 1px solid var(--bs-border-color);
  background: #fff;
  color: #2d2023;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.venue-admin-quick-links a:hover {
  border-color: rgba(var(--site-primary-rgb), 0.35);
  background: rgba(var(--site-primary-rgb), 0.04);
  color: var(--site-primary);
}

.venue-admin-venue-list .list-group-item {
  border-left: 0;
  border-right: 0;
}

.venue-admin-mini-day.is-clickable {
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.venue-admin-mini-day.is-clickable:hover,
.venue-admin-mini-day.is-clickable:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 0.125rem 0.375rem rgba(45, 32, 35, 0.12);
  outline: 2px solid rgba(var(--site-primary-rgb), 0.35);
  outline-offset: 1px;
}

.venue-admin-mini-day.venue-day-booked {
  background: #ffebee !important;
  color: #b71c1c !important;
  border-color: #ffcdd2 !important;
}

.venue-admin-mini-day.venue-day-blocked-only {
  background: #fff3e0 !important;
  color: #e65100 !important;
  border-color: #ffe0b2 !important;
}

.venue-cal-blocked-only {
  background: #fff3e0;
  border-color: #ffe0b2;
}

.venue-booking-page-header {
  max-width: none;
}

.venue-booking-details-page {
  max-width: 960px;
  margin: 0 auto;
}

.venue-booking-detail-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.venue-booking-detail-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}

.venue-booking-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--bs-border-radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.venue-booking-action-btn-primary {
  background: var(--site-color-primary, #8b2942);
  color: #fff;
  border-color: var(--site-color-primary, #8b2942);
}

.venue-booking-action-btn-primary:hover {
  background: var(--site-primary-dark, #6d1f34);
  color: #fff;
}

.venue-booking-action-btn-secondary {
  background: #fff;
  color: #4a3f42;
  border-color: var(--bs-border-color);
}

.venue-booking-action-btn-secondary:hover {
  background: #faf7f6;
  color: #2d2023;
}

.venue-booking-details-header {
  padding: 0.25rem 0;
}

.venue-booking-details-title {
  font-family: var(--site-font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2d2023;
  margin: 0;
}

.venue-booking-detail-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-color-primary, #8b2942);
}

.venue-booking-detail-hero {
  padding: 1.25rem 1.35rem;
  border-radius: var(--bs-border-radius-xl);
  background: linear-gradient(135deg, #fffdfb 0%, #fdf5f3 55%, #fff 100%);
  border: 1px solid #efe8e6;
}

.venue-booking-detail-hero-title {
  font-family: var(--site-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d2023;
  margin: 0;
}

.venue-booking-detail-hero-meta {
  font-size: 0.9375rem;
  color: #6b5f62;
}

.venue-booking-info-panel {
  height: 100%;
  padding: 1.15rem 1.25rem;
  border-radius: var(--bs-border-radius-lg);
  border: 1px solid var(--bs-border-color);
  background: #fff;
}

.venue-booking-info-panel-title {
  font-family: var(--site-font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #2d2023;
  margin: 0 0 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #efe8e6;
}

.venue-booking-link {
  color: var(--site-primary);
  text-decoration: none;
  font-weight: 500;
}

.venue-booking-link:hover {
  text-decoration: underline;
}

.venue-booking-id-badge-lg {
  font-size: 0.9375rem;
  padding: 0.35rem 0.875rem;
}

.venue-booking-payment-card.is-paid {
  border-color: #c8e6c9;
  background: linear-gradient(135deg, #f1f8f2 0%, #fff 100%);
}

.venue-booking-payment-card.has-balance {
  border-color: rgba(var(--site-primary-rgb), 0.35);
}

.venue-booking-back-link {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--site-primary);
  text-decoration: none;
}

.venue-booking-back-link:hover {
  color: var(--site-primary-dark);
  text-decoration: underline;
}

.venue-booking-form-section {
  height: 100%;
}

.venue-booking-form-section-title {
  font-family: var(--site-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #2d2023;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.venue-booking-id-badge {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--site-color-primary, #8b2942);
  background: rgba(139, 41, 66, 0.1);
}

.venue-booking-detail-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b5f62;
  margin-bottom: 0.25rem;
}

.venue-booking-detail-value {
  font-weight: 600;
  color: #2d2023;
}

.venue-booking-dl {
  margin: 0;
}

.venue-booking-dl dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b5f62;
  margin-top: 0.75rem;
}

.venue-booking-dl dt:first-child {
  margin-top: 0;
}

.venue-booking-dl dd {
  margin: 0.15rem 0 0;
  color: #2d2023;
}

.venue-booking-payment-card {
  padding: 0.875rem 1rem;
  border-radius: var(--bs-border-radius-lg);
  border: 1px solid var(--bs-border-color);
  background: linear-gradient(135deg, #fffdfb 0%, #fdf5f3 100%);
  height: 100%;
}

.venue-booking-payment-card-balance {
  border-color: rgba(var(--site-primary-rgb), 0.25);
  background: linear-gradient(135deg, #fff 0%, rgba(var(--site-primary-rgb), 0.06) 100%);
}

.venue-booking-payment-amount {
  font-family: var(--site-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d2023;
}

.venue-booking-actions .btn-success {
  background: #25d366;
  border-color: #25d366;
}

.venue-booking-actions .btn-success:hover {
  background: #1ebe57;
  border-color: #1ebe57;
}

.venue-booking-print-body {
  margin: 0;
  padding-top: 4rem;
  background: #ece8e5;
  font-family: var(--site-font-body);
  min-height: 100vh;
}

.venue-booking-print-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bs-border-color);
  box-shadow: 0 0.125rem 0.75rem rgba(45, 32, 35, 0.08);
}

.venue-booking-print-topbar-inner {
  max-width: 240mm;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.venue-booking-print-topbar-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2d2023;
  letter-spacing: 0.03em;
}

.venue-booking-print-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}

.venue-booking-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--bs-border-radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.venue-booking-print-btn-primary {
  background: var(--site-color-primary, #8b2942);
  color: #fff;
  border-color: var(--site-color-primary, #8b2942);
}

.venue-booking-print-btn-primary:hover {
  background: #6d1f34;
}

.venue-booking-print-btn-secondary {
  background: #fff;
  color: #4a3f42;
  border-color: var(--bs-border-color);
}

.venue-booking-print-btn-secondary:hover {
  background: #faf7f6;
}

.venue-booking-print-sheet {
  width: 210mm;
  min-height: 297mm;
  margin: 1rem auto 2rem;
  padding: 14mm 14mm 16mm;
  background: #fff;
  box-shadow: 0 0.75rem 2rem rgba(45, 32, 35, 0.14);
  border-radius: 2px;
}

.venue-booking-receipt {
  color: #2d2023;
}

.venue-booking-receipt-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #2d2023;
}

.venue-booking-receipt-eyebrow {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--site-color-primary, #8b2942);
  margin: 0 0 0.25rem;
}

.venue-booking-receipt-venue {
  font-family: var(--site-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.venue-booking-receipt-meta {
  text-align: right;
}

.venue-booking-receipt-id {
  font-family: var(--site-font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--site-color-primary, #8b2942);
}

.venue-booking-receipt-date {
  font-size: 0.8125rem;
  color: #6b5f62;
  margin-top: 0.15rem;
}

.venue-booking-receipt-highlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
  background: linear-gradient(135deg, #fdf8f6 0%, #fff 100%);
  border: 1px solid #efe8e6;
}

.venue-booking-receipt-highlight-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b5f62;
  margin-bottom: 0.2rem;
}

.venue-booking-receipt-highlight strong {
  font-size: 0.9375rem;
  font-weight: 700;
}

.venue-booking-receipt-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.venue-booking-receipt-block h2 {
  font-family: var(--site-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b5f62;
  margin: 0 0 0.625rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #efe8e6;
}

.venue-booking-receipt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.venue-booking-receipt-table th {
  width: 38%;
  padding: 0.35rem 0.5rem 0.35rem 0;
  font-weight: 600;
  color: #6b5f62;
  vertical-align: top;
  text-align: left;
}

.venue-booking-receipt-table td {
  padding: 0.35rem 0;
  color: #2d2023;
  vertical-align: top;
}

.venue-booking-receipt-payment h2 {
  font-family: var(--site-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b5f62;
  margin: 0 0 0.625rem;
}

.venue-booking-receipt-payment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.venue-booking-receipt-payment-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid #efe8e6;
}

.venue-booking-receipt-payment-table .text-end {
  text-align: right;
  font-weight: 600;
}

.venue-booking-receipt-total-row td {
  border-bottom: none;
  border-top: 2px solid #2d2023;
  padding-top: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--site-color-primary, #8b2942);
}

.venue-booking-receipt-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #efe8e6;
  text-align: center;
  font-size: 0.8125rem;
  color: #6b5f62;
}

.venue-booking-receipt-footer p {
  margin: 0 0 0.35rem;
}

.venue-booking-receipt-footer-note {
  font-size: 0.6875rem;
  opacity: 0.85;
}

@media (max-width: 767.98px) {
  .venue-booking-receipt-columns {
    grid-template-columns: 1fr;
  }

  .venue-booking-receipt-meta {
    text-align: left;
  }

  .venue-booking-print-sheet {
    width: auto;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    padding: 1.25rem;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }

  body.venue-booking-print-body {
    padding-top: 0;
    background: #fff;
  }

  .venue-booking-print-topbar {
    display: none !important;
  }

  .venue-booking-print-sheet {
    width: auto;
    min-height: auto;
    margin: 0;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
  }

  .venue-booking-receipt-highlight,
  .venue-booking-payment-card {
    break-inside: avoid;
  }
}

.venue-social-block {
  padding: 0.875rem 1rem 1rem;
  border-radius: var(--bs-border-radius-lg);
  border: 1px solid var(--bs-border-color);
  background: linear-gradient(135deg, #fffdfb 0%, #fdf5f3 100%);
  box-shadow: 0 0.125rem 0.5rem rgba(45, 32, 35, 0.06);
}

.venue-social-heading {
  font-family: var(--site-font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #2d2023;
  margin: 0 0 0.25rem;
}

.venue-social-subtext {
  font-size: 0.8125rem;
  color: #6b5f62;
  margin: 0 0 0.875rem;
}

.venue-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 0;
}

.venue-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--bs-border-color);
  background: #fff;
  color: #6b5f62;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  box-shadow: var(--site-shadow-sm);
}

.venue-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.venue-social-link:hover,
.venue-social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--site-shadow-md);
  text-decoration: none;
}

.venue-social-link--website:hover,
.venue-social-link--website:focus-visible {
  color: #7a1f2b;
  border-color: #e8c9a8;
  background: #fdf5ee;
}

.venue-social-link--whatsapp:hover,
.venue-social-link--whatsapp:focus-visible {
  color: #128c7e;
  border-color: #b2dfdb;
  background: #e8f8f5;
}

.venue-social-link--instagram:hover,
.venue-social-link--instagram:focus-visible {
  color: #c13584;
  border-color: #f8bbd0;
  background: #fce4ec;
}

.venue-social-link--facebook:hover,
.venue-social-link--facebook:focus-visible {
  color: #1877f2;
  border-color: #bbdefb;
  background: #e3f2fd;
}

.venue-social-link--tiktok:hover,
.venue-social-link--tiktok:focus-visible {
  color: #111;
  border-color: #cfd8dc;
  background: #eceff1;
}

.venue-detail-title-row {
  gap: 0.75rem;
}

.venue-share-wrap {
  position: relative;
  flex-shrink: 0;
}

.venue-share-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--site-color-primary, #8b2942);
  background: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-pill);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.venue-share-trigger:hover,
.venue-share-trigger:focus-visible {
  background: #fdf8f9;
  border-color: #e8c4cc;
  box-shadow: var(--site-shadow-sm);
}

.venue-share-trigger-icon {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.venue-share-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 20;
  min-width: 12.5rem;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-lg);
  box-shadow: var(--site-shadow-md);
}

.venue-share-menu-title {
  margin: 0.25rem 0.5rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6b5f62;
}

.venue-share-menu-item {
  display: block;
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  color: #3d3336;
  background: transparent;
  border: 0;
  border-radius: var(--bs-border-radius);
  cursor: pointer;
}

.venue-share-menu-link {
  text-decoration: none;
}

.venue-share-menu-item:hover,
.venue-share-menu-item:focus-visible {
  background: #fdf8f9;
  color: var(--site-color-primary, #8b2942);
  text-decoration: none;
}

.venue-share-feedback {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 21;
  padding: 0.375rem 0.625rem;
  background: #fff;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--site-shadow-sm);
}

@media (max-width: 575.98px) {
  .venue-detail-title-row {
    flex-direction: column;
    align-items: stretch !important;
  }

  .venue-share-wrap {
    align-self: flex-start;
  }

  .venue-share-menu {
    left: 0;
    right: auto;
  }

  .venue-share-feedback {
    left: 0;
    right: auto;
  }
}

/* Venue page chat — floating widget (mobile + desktop) */
.venue-chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
}

.venue-chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.15rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--site-primary) 0%, var(--site-primary-dark) 100%);
  color: #fff;
  font-size: 0.925rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 0.4rem 1.25rem rgba(var(--site-primary-rgb), 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.venue-chat-launcher:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0.55rem 1.45rem rgba(var(--site-primary-rgb), 0.42);
}

.venue-chat-launcher:focus-visible {
  outline: 2px solid rgba(var(--site-primary-rgb), 0.45);
  outline-offset: 3px;
}

.venue-chat-launcher-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.venue-chat-panel {
  display: none;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(var(--site-primary-rgb), 0.12);
}

.venue-chat-panel.is-open {
  display: flex;
}

.venue-chat-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #fff 0%, rgba(var(--site-primary-rgb), 0.04) 100%);
  border-bottom: 1px solid rgba(var(--site-primary-rgb), 0.1);
}

.venue-chat-panel-title-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.venue-chat-panel-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bs-secondary-color);
  line-height: 1.2;
}

.venue-chat-panel-title {
  font-size: 0.95rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.venue-chat-close {
  flex-shrink: 0;
  line-height: 1;
}

.venue-chat-body {
  min-height: 280px;
  max-height: min(420px, 60vh);
}

.venue-chat-thread {
  min-height: 0;
}

.venue-chat-messages {
  overflow-y: auto;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 180px;
  max-height: min(320px, 45vh);
  background: #faf7f5;
}

.venue-chat-message {
  display: flex;
  flex-direction: column;
  max-width: 88%;
}

.venue-chat-message--visitor {
  align-self: flex-end;
  align-items: flex-end;
}

.venue-chat-message--admin {
  align-self: flex-start;
  align-items: flex-start;
}

.venue-chat-bubble {
  padding: 0.5rem 0.75rem;
  border-radius: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.venue-chat-message--visitor .venue-chat-bubble {
  background: var(--site-primary, #8b2942);
  color: #fff;
  border-bottom-right-radius: 0.2rem;
}

.venue-chat-message--admin .venue-chat-bubble {
  background: #fff;
  border: 1px solid var(--bs-border-color);
  border-bottom-left-radius: 0.2rem;
}

.venue-chat-meta {
  font-size: 0.7rem;
  color: var(--bs-secondary-color);
  margin-top: 0.15rem;
  padding: 0 0.15rem;
}

.venue-chat-input {
  resize: none;
  min-height: 2.5rem;
}

.venue-chat-send-btn {
  flex-shrink: 0;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding-inline: 0.65rem;
}

@media (min-width: 992px) {
  .venue-chat-panel {
    position: fixed;
    right: 1.25rem;
    bottom: 5.25rem;
    width: min(24rem, calc(100vw - 2.5rem));
    max-height: min(32rem, calc(100vh - 7rem));
    border-radius: 1rem;
    box-shadow: 0 1rem 2.5rem rgba(45, 32, 35, 0.18);
  }

  .venue-chat-body {
    max-height: min(28rem, calc(100vh - 10rem));
  }

  .venue-chat-messages {
    max-height: min(22rem, calc(100vh - 14rem));
  }
}

@media (max-width: 991.98px) {
  .venue-chat-launcher-label {
    font-size: 0.875rem;
  }

  .venue-chat-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    border-radius: 1rem 1rem 0 0;
    max-height: 85vh;
    box-shadow: 0 -0.35rem 1.5rem rgba(45, 32, 35, 0.16);
  }

  .venue-chat-body {
    max-height: calc(85vh - 3.25rem);
  }

  body.venue-chat-open {
    overflow: hidden;
  }
}

body.venue-chat-open .venue-chat-launcher {
  display: none;
}

@media (max-width: 420px) {
  .venue-chat-launcher-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .venue-chat-launcher {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* Venue admin messages */
.venue-admin-messages-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1rem;
  min-height: 28rem;
}

.venue-admin-messages-list {
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}

.venue-admin-messages-list-item {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--bs-border-color);
  background: #fff;
  padding: 0.75rem 0.85rem;
  text-decoration: none;
  color: inherit;
}

.venue-admin-messages-list-item:hover,
.venue-admin-messages-list-item.is-active {
  background: #faf7f5;
}

.venue-admin-messages-list-item:last-child {
  border-bottom: 0;
}

.venue-admin-messages-thread {
  border: 1px solid var(--bs-border-color);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  min-height: 28rem;
  background: #fff;
}

.venue-admin-messages-thread-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  background: #faf7f5;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (max-width: 767.98px) {
  .venue-admin-messages-layout {
    grid-template-columns: 1fr;
  }
}

/* Venue halls (admin + public) */
.venue-hall-card {
  background: #fff;
  border: 1px solid rgba(92, 61, 46, 0.12);
  border-radius: 0.75rem;
  padding: 1.25rem;
  height: 100%;
  box-shadow: 0 4px 18px rgba(45, 24, 16, 0.05);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.venue-hall-card:hover {
  border-color: rgba(128, 0, 32, 0.25);
  box-shadow: 0 8px 24px rgba(45, 24, 16, 0.08);
}

.venue-hall-card.is-editing {
  border-color: rgba(128, 0, 32, 0.35);
}

.venue-hall-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.venue-hall-card-title {
  font-family: var(--site-font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  color: var(--site-ink);
}

.venue-hall-card-actions {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.venue-hall-card-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
}

.venue-hall-stat-label,
.venue-hall-public-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a7568;
  margin-bottom: 0.15rem;
}

.venue-hall-stat-value,
.venue-hall-public-value {
  font-weight: 600;
  color: #2d1810;
}

.venue-hall-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #800020;
}

.venue-hall-card-link:hover {
  text-decoration: underline;
}

.venue-halls-empty {
  border: 1px dashed rgba(92, 61, 46, 0.2);
  border-radius: 0.75rem;
  background: #fdfaf8;
}

.venue-halls-public-heading {
  font-family: var(--site-font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--site-ink);
  margin-bottom: 0.5rem;
}

.venue-halls-public-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}

.venue-hall-public-card {
  background: linear-gradient(145deg, #fff 0%, #fdf8f5 100%);
  border: 1px solid rgba(92, 61, 46, 0.1);
  border-radius: 0.65rem;
  padding: 1rem 1.1rem;
}

.venue-hall-public-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: #2d1810;
}

.venue-hall-public-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.venue-hall-selector .venue-hall-select,
.venue-hall-picker .venue-hall-select {
  width: 100%;
  max-width: none;
  border: none;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d1810;
  padding: 0.5625rem 2rem 0.5625rem 0.875rem;
  cursor: pointer;
  appearance: none;
  line-height: 1.2;
}

.venue-hall-picker-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bs-secondary-color);
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.venue-hall-picker-control {
  position: relative;
  padding: 0.1875rem;
  background: #f5ebe8;
  border-radius: 999px;
  border: 1px solid var(--bs-border-color);
}

.venue-hall-picker-control::after {
  content: "";
  position: absolute;
  right: 0.875rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid #6b5f62;
  border-bottom: 2px solid #6b5f62;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.venue-hall-picker-control:focus-within {
  box-shadow: 0 0 0 0.15rem rgba(92, 61, 46, 0.15);
}

.venue-hall-picker .venue-hall-select:focus {
  outline: none;
  box-shadow: none;
}

button.venue-session-option {
  border: none;
  cursor: pointer;
  background: transparent;
}

/* ===== Lovable-style venue cards ===== */
.venue-card--lovable {
  border: 0;
  border-radius: 0;
  box-shadow: inset 0 0 0 1px var(--site-border);
  background: var(--site-surface);
  overflow: hidden;
}

.venue-card--lovable:hover {
  transform: none;
  box-shadow: var(--site-shadow-soft);
  border-color: transparent;
}

.venue-card--lovable .venue-card-media {
  overflow: hidden;
  background: var(--site-surface-muted);
}

.venue-card--lovable .venue-card-img,
.venue-card--lovable .venue-card-placeholder {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.venue-card--lovable:hover .venue-card-img {
  transform: scale(1.05);
}

.venue-card--lovable .venue-card-body {
  padding: 1.25rem;
}

.venue-card-title {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bs-body-color);
}

.venue-card-location {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: var(--site-muted);
}

.venue-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--site-border);
}

.venue-card-stat__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.venue-card-stat__value {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bs-body-color);
}

/* ===== Homepage marketing ===== */
.site-body--home {
  background: var(--site-bg);
  background-image: none;
}

.site-navbar--home {
  background: color-mix(in srgb, var(--site-bg) 85%, transparent) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--site-border) !important;
  box-shadow: none;
}

.site-navbar--home .navbar-brand {
  font-family: var(--site-font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--site-primary) !important;
}

.site-navbar--home .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--site-muted) !important;
  background: transparent !important;
}

.site-navbar--home .nav-link:hover,
.site-navbar--home .nav-link:focus-visible {
  color: var(--bs-body-color) !important;
}

.site-navbar-tools {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-right: 0.35rem;
}

.site-navbar-tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--site-ink);
  cursor: pointer;
}

.site-navbar-tool svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.site-navbar-tool:hover,
.site-navbar-tool:focus-visible,
.site-navbar-tool.is-open {
  color: var(--site-primary);
}

.site-navbar--home .navbar-toggler {
  margin-left: 0;
}

.sb-home-hero {
  position: relative;
  overflow: hidden;
  color: var(--site-bg);
  background: var(--site-ink);
}

.sb-home-hero__media {
  position: absolute;
  inset: 0;
}

.sb-home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sb-home-hero__veil {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--site-ink) 65%, transparent);
}

.sb-home-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 4.25rem;
  text-align: left;
}

@media (min-width: 768px) {
  .sb-home-hero__inner {
    padding-top: 7rem;
    padding-bottom: 6.5rem;
  }
}

.sb-home-hero__eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--site-gold);
}

.sb-home-hero__title {
  margin: 1.25rem 0 0;
  max-width: 48rem;
  font-family: var(--site-font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--site-bg);
}

.sb-home-hero__lead {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--site-bg) 75%, transparent);
}

.sb-home-search {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--site-border);
  box-shadow: var(--site-shadow-soft);
  overflow: visible;
}

@media (min-width: 768px) {
  .sb-home-search {
    grid-template-columns: 1.2fr 1fr 1fr auto;
  }
}

.sb-home-search__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 1rem 1.25rem;
  background: var(--site-surface);
  text-align: left;
  min-width: 0;
}

.sb-home-search__label {
  display: block;
  margin: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.sb-home-search__field--name {
  overflow: visible;
}

.sb-home-search__control {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--bs-body-color);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  padding: 0;
  min-height: 1.5rem;
  box-shadow: none !important;
}

.sb-home-search__control--select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23862723' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  background-size: 0.75rem 0.5rem;
}

.sb-home-search__control--select:has(option:checked[value=""]),
.sb-home-search__control--select:disabled {
  color: color-mix(in srgb, var(--site-muted) 85%, var(--bs-body-color));
}

.sb-home-search__control:focus {
  outline: none;
}

.sb-home-search__control::placeholder {
  color: color-mix(in srgb, var(--site-muted) 85%, var(--bs-body-color));
}

.sb-home-search__field--name .venue-name-suggest {
  width: 100%;
}

.sb-home-search__field--name .venue-name-suggest-list {
  top: auto;
  bottom: calc(100% + 0.35rem);
  z-index: 40;
  border-color: var(--site-border);
  border-radius: 0;
  box-shadow: var(--site-shadow-soft);
}

.sb-home-search__submit {
  border: 0;
  border-radius: 0;
  background: var(--site-primary);
  color: var(--site-bg);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.sb-home-search__submit:hover,
.sb-home-search__submit:focus-visible {
  background: var(--site-ink);
  color: var(--site-bg);
}

.sb-home-search__advanced {
  display: inline-block;
  margin-top: 1rem;
  color: color-mix(in srgb, var(--site-bg) 85%, transparent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--site-bg) 35%, transparent);
  padding-bottom: 0.15rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.sb-home-search__advanced:hover,
.sb-home-search__advanced:focus-visible {
  color: var(--site-bg);
  border-bottom-color: color-mix(in srgb, var(--site-bg) 70%, transparent);
}

.sb-home-listing {
  scroll-margin-top: 5.5rem;
}

.sb-home-featured {
  scroll-margin-top: 5.5rem;
}

.sb-home-city-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-top: 1.75rem;
}

.sb-home-city-pills__label {
  flex: 0 0 auto;
  margin: 0;
  color: color-mix(in srgb, var(--site-bg) 72%, transparent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sb-home-city-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--site-bg) 30%, transparent);
  background: transparent;
  color: color-mix(in srgb, var(--site-bg) 80%, transparent);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.sb-home-city-pill:hover,
.sb-home-city-pill:focus-visible {
  color: var(--site-bg);
  border-color: color-mix(in srgb, var(--site-bg) 55%, transparent);
  background: color-mix(in srgb, var(--site-bg) 8%, transparent);
}

.sb-home-body {
  background: var(--site-bg);
  padding: 0;
}

.sb-home-body > .container {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.sb-home-featured,
.sb-home-listing {
  margin-bottom: 5rem;
}

.sb-home-featured__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.sb-home-featured__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.sb-home-featured__title {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  font-weight: 500;
}

.sb-home-featured__count {
  font-size: 0.875rem;
  color: var(--site-muted);
}

.sb-home-listing .site-home-filter-card,
.sb-home-listing .site-filter-card {
  border-radius: 0;
  box-shadow: var(--site-shadow-sm);
}

.sb-home-cta {
  padding: 5rem 0;
  background: var(--site-bg);
  color: var(--bs-body-color);
}

.sb-home-cta__title {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--bs-body-color);
}

.sb-home-cta__lead {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  color: var(--site-muted);
}

.sb-home-cta__btn {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  border: 0;
  background: var(--site-primary);
  color: var(--site-bg);
  text-decoration: none;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.sb-home-cta__btn:hover,
.sb-home-cta__btn:focus-visible {
  background: var(--site-ink);
  color: var(--site-bg);
}

.site-footer--home {
  background: var(--site-accent-soft);
  border-top-color: var(--site-border) !important;
}

.site-footer-home {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer--home {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.site-footer--home .site-footer-brand {
  font-family: var(--site-font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: lowercase;
}

.site-footer--home .site-footer-tagline {
  margin-top: 0.5rem;
  max-width: 24rem;
  font-size: 0.875rem;
}

.site-footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-muted);
}

/* Details polish */
.venue-detail-page .venue-detail-header .h2 {
  font-family: var(--site-font-heading);
  font-weight: 500;
}

.venue-detail-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--site-border);
  border-bottom: 1px solid var(--site-border);
}

@media (min-width: 576px) {
  .venue-detail-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.venue-detail-stat__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.venue-detail-stat__value {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--site-font-heading);
  font-size: 1.25rem;
  font-weight: 500;
}

/* ===== Lovable advanced filters sidebar (home) ===== */
.sb-home-browse {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .sb-home-browse {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }

  .sb-home-browse > .sb-home-filters-slot,
  .sb-home-browse > .sb-home-filters {
    grid-column: 1;
    grid-row: 1;
  }

  .sb-home-browse > .sb-home-browse__results {
    grid-column: 2;
    grid-row: 1;
  }
}

.sb-home-filters-slot:empty {
  display: none;
}

.sb-home-filters-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--site-primary);
  background: transparent;
  color: var(--site-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sb-home-filters-mobile-toggle:hover,
.sb-home-filters-mobile-toggle:focus-visible {
  background: var(--site-primary);
  color: #fff;
}

@media (min-width: 768px) {
  .sb-home-filters-mobile-toggle {
    display: none !important;
  }
}

body.sb-home-filters-locked {
  overflow: hidden;
}

/* Mobile search offcanvas (navbar search icon) */
.sb-home-search-offcanvas.offcanvas-bottom {
  --bs-offcanvas-height: 75vh;
  height: 75vh;
  max-height: 75vh;
  border-top: 1px solid var(--site-border);
  background: #fff;
}

.sb-home-search-offcanvas__title {
  font-family: var(--site-font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--site-ink);
}

.sb-home-search-offcanvas__input {
  border-radius: 0;
  border-color: var(--site-border);
  min-height: 3rem;
  font-size: 1rem;
}

.sb-home-search-offcanvas__input:focus {
  border-color: var(--site-primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--site-primary-rgb), 0.15);
}

.sb-home-search-offcanvas .offcanvas-body {
  overflow: auto;
}

.sb-home-search-offcanvas .venue-name-suggest-list {
  z-index: 20;
  border-color: var(--site-border);
  border-radius: 0;
  box-shadow: var(--site-shadow-soft);
  max-height: calc(75vh - 8rem);
  overflow-y: auto;
}

.sb-home-filters-mobile-toggle {
  display: none !important;
}

.sb-home-filters {
  position: fixed;
  inset: 0;
  z-index: 1080;
  visibility: hidden;
  pointer-events: none;
}

.sb-home-filters.is-open {
  visibility: visible;
  pointer-events: auto;
}

.sb-home-filters__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(30, 19, 14, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sb-home-filters.is-open .sb-home-filters__backdrop {
  opacity: 1;
}

.sb-home-filters__sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  background: var(--site-surface);
  border-top: 1px solid var(--site-border);
  box-shadow: 0 -18px 48px rgba(44, 26, 20, 0.18);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sb-home-filters.is-open .sb-home-filters__sheet {
  transform: translateY(0);
}

.sb-home-filters__panel {
  display: flex;
  flex-direction: column;
  max-height: 88vh;
  padding: 1.5rem 1.25rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
}

.sb-home-filters__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
}

.sb-home-filters__title {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bs-body-color);
}

.sb-home-filters__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--site-border);
  background: var(--site-bg);
  color: var(--site-ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.sb-home-filters__close:hover,
.sb-home-filters__close:focus-visible {
  border-color: var(--site-primary);
  color: var(--site-primary);
}

.sb-home-filters__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  padding-right: 0.15rem;
}

.sb-home-filters__field {
  display: block;
  margin: 0;
}

.sb-home-filters__label {
  display: block;
  margin: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.sb-home-filters__control {
  display: block;
  width: 100%;
  margin-top: 0.375rem;
  border: 1px solid var(--site-border);
  border-radius: 0;
  background: var(--site-bg);
  color: var(--bs-body-color);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  padding: 0.5rem 0.75rem;
  min-height: 2.5rem;
  box-shadow: none !important;
  outline: none;
}

.sb-home-filters__control:focus {
  border-color: var(--site-primary);
  outline: none;
  box-shadow: none !important;
}

.sb-home-filters__control:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.sb-home-filters__range {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  accent-color: var(--site-primary);
}

.sb-home-filters__count {
  display: none;
  margin: 1.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--site-border);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.sb-home-filters__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-top: 1.5rem;
  padding-top: 0.25rem;
}

.sb-home-filters__reset,
.sb-home-filters__apply {
  border: 0;
  padding: 0.85rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.sb-home-filters__reset {
  flex: 1;
  border: 1px solid var(--site-border);
  background: transparent;
  color: var(--bs-body-color);
}

.sb-home-filters__reset:hover,
.sb-home-filters__reset:focus-visible {
  border-color: var(--site-primary);
  color: var(--site-primary);
}

.sb-home-filters__apply {
  flex: 2;
  background: var(--site-primary);
  color: #fff;
}

.sb-home-filters__apply:hover,
.sb-home-filters__apply:focus-visible {
  background: var(--site-ink);
  color: #fff;
}

@media (min-width: 768px) {
  .sb-home-filters,
  .sb-home-filters.is-open {
    position: static;
    inset: auto;
    z-index: auto;
    visibility: visible;
    pointer-events: auto;
  }

  .sb-home-filters__backdrop,
  .sb-home-filters__close,
  .sb-home-filters__actions {
    display: none;
  }

  .sb-home-filters__sheet {
    position: static;
    max-height: none;
    transform: none;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .sb-home-filters.is-open .sb-home-filters__sheet {
    transform: none;
  }

  .sb-home-filters__panel {
    max-height: none;
    overflow: visible;
    position: sticky;
    top: 5.5rem;
    border: 1px solid var(--site-border);
    background: var(--site-surface);
    padding: 1.5rem;
  }

  .sb-home-filters__title {
    font-size: 1.25rem;
  }

  .sb-home-filters__form {
    overflow: visible;
    flex: none;
  }

  .sb-home-filters__count {
    display: block;
  }
}

.sb-home-browse__results .venue-infinite-scroll > .row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.sb-home-listing .site-home-filter-card,
.sb-home-listing .site-filter-card {
  display: none;
}

/* Location landing (city / area) — marketing theme */
.location-landing-breadcrumb {
  margin-bottom: 1.25rem;
}

.location-landing-intro {
  margin: 0 0 1.75rem;
}

.location-landing-intro__title {
  margin: 0;
  max-width: 44rem;
  font-family: var(--site-font-body);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--site-ink);
  text-wrap: balance;
}

.location-landing-intro--compact .location-landing-intro__title {
  margin-top: 0;
}

.location-landing-intro__lead {
  margin: 0.85rem 0 0;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--site-muted);
}

.location-landing-intro--compact .location-landing-intro__lead {
  margin-top: 0.65rem;
}

.location-landing-about {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--site-border);
}

.location-landing-about__title {
  margin: 0 0 1rem;
  font-family: var(--site-font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--site-ink);
}

.location-landing-about__lead {
  margin: 0 0 0.85rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--site-muted);
}

.location-landing-about__lead:last-child {
  margin-bottom: 0;
}

.location-area-links__title {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.location-area-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-area-links__pill {
  background: var(--site-surface);
  color: var(--bs-body-color);
  border-color: var(--site-border);
}

.location-area-links__pill:hover,
.location-area-links__pill:focus-visible {
  background: var(--site-primary);
  border-color: var(--site-primary);
  color: #fff;
}

.sb-home-filters__control[readonly] {
  background: var(--site-surface-muted);
  color: var(--site-muted);
  cursor: default;
}

/* Venue details (Lovable parity) */
.sb-venue {
  padding-bottom: 2.5rem;
  font-family: var(--site-font-body);
}

.sb-venue h1,
.sb-venue h2,
.sb-venue h3,
.sb-venue .sb-venue-title,
.sb-venue .sb-venue-section__title,
.sb-venue .sb-venue-stat__value,
.sb-venue .sb-venue-card__title,
.sb-venue .sb-venue-card__price,
.sb-venue .sb-venue-faq__title,
.sb-venue .sb-venue-related__title,
.sb-venue .sb-venue-faq__button {
  font-family: var(--site-font-heading);
}

.sb-venue-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 1.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.sb-venue-breadcrumb__link {
  color: inherit;
  text-decoration: none;
}

.sb-venue-breadcrumb__link:hover,
.sb-venue-breadcrumb__link:focus-visible {
  color: var(--bs-body-color);
}

.sb-venue-breadcrumb__sep {
  padding: 0 0.5rem;
  color: var(--site-muted);
}

.sb-venue-breadcrumb__current {
  color: var(--bs-body-color);
}

.sb-venue-mosaic {
  position: relative;
  display: grid;
  gap: 0.5rem;
  overflow: hidden;
  border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .sb-venue-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 28rem;
    gap: 0.75rem;
  }
}

.sb-venue-mosaic__cell {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.sb-venue-mosaic__cell--hero {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .sb-venue-mosaic__cell--hero {
    grid-column: span 2;
    grid-row: span 2;
  }

  .sb-venue-mosaic__cell--wide {
    grid-column: span 2;
  }
}

.sb-venue-mosaic__img {
  display: block;
  width: 100%;
  height: 10rem;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sb-venue-mosaic__cell:hover .sb-venue-mosaic__img,
.sb-venue-mosaic__cell:focus-visible .sb-venue-mosaic__img {
  transform: scale(1.03);
}

.sb-venue-mosaic__cell--hero .sb-venue-mosaic__img {
  height: 16rem;
}

@media (min-width: 768px) {
  .sb-venue-mosaic__img,
  .sb-venue-mosaic__cell--hero .sb-venue-mosaic__img {
    height: 100%;
    min-height: 100%;
  }
}

.sb-venue-mosaic__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16rem;
  background: var(--site-surface-muted);
  border: 1px solid var(--site-border);
}

.sb-venue-mosaic__verified {
  z-index: 2;
}

.sb-venue-mosaic__show-all {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  padding: 0.55rem 1rem;
  border: 0;
  background: rgba(253, 250, 244, 0.96);
  color: var(--site-ink);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px var(--site-border);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.sb-venue-mosaic__show-all:hover,
.sb-venue-mosaic__show-all:focus-visible {
  background: #fff;
}

.sb-venue-layout {
  display: grid;
  gap: 0;
  margin-top: 2.75rem;
}

@media (min-width: 992px) {
  .sb-venue-layout {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
    gap: 3.5rem;
  }

  .sb-venue-layout:not(:has(.sb-venue-aside)) {
    grid-template-columns: 1fr;
  }
}

.sb-venue-booking-mobile .sb-venue-enquiry .venue-whatsapp-enquiry-wrap,
.sb-venue-booking-mobile .sb-enquiry {
  margin-top: 0;
}

.sb-venue-aside .sb-enquiry,
.sb-venue-aside .venue-whatsapp-enquiry-wrap {
  margin-top: 0;
}

.sb-venue-card__price,
.sb-venue-aside .venue-whatsapp-enquiry__price {
  margin: 0.45rem 0 0;
  font-family: var(--site-font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--site-ink);
}

.sb-venue-card__price + .sb-venue-card__lead {
  margin-top: 0.65rem;
}

.sb-venue-header__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.sb-venue-title {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--site-ink);
}

.sb-venue-location {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: var(--site-muted);
}

.sb-venue-address {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--site-muted);
}

.sb-venue-contact-inline {
  margin-top: 1.25rem;
}

.sb-venue-contact-inline .sb-venue-verified-note {
  margin-top: 0;
}

.sb-venue-contact-inline .sb-venue-phone {
  margin-top: 0.75rem;
}

.sb-venue-verified-note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--site-muted);
}

.sb-venue-phone {
  margin-top: 1rem;
}

.sb-venue-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
  padding: 2rem 0;
  border-top: 1px solid var(--site-border);
  border-bottom: 1px solid var(--site-border);
}

@media (min-width: 576px) {
  .sb-venue-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

.sb-venue-stat {
  margin: 0;
}

.sb-venue-stat__label {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.sb-venue-stat__value {
  margin: 0.35rem 0 0;
  font-family: var(--site-font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--site-ink);
}

.sb-venue-section {
  margin-top: 2.75rem;
}

.sb-venue-section__title {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--site-ink);
}

.sb-venue-about {
  margin-top: 0.85rem;
  max-width: 42rem;
  line-height: 1.75;
  color: var(--site-muted);
}

.sb-venue-amenities {
  display: grid;
  gap: 0.85rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 576px) {
  .sb-venue-amenities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sb-venue-amenities__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--bs-body-color);
}

.sb-venue-amenities__dot {
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--site-gold);
}

.sb-venue-media {
  outline: 1px solid var(--site-border);
  background: var(--site-surface-muted);
}

.sb-venue-explore__title {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.sb-venue-explore__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sb-venue-sticky {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 992px) {
  .sb-venue-sticky {
    position: sticky;
    top: 5.5rem;
  }
}

.sb-venue-card {
  background: var(--site-surface);
  padding: 1.75rem;
  box-shadow: var(--site-shadow-soft);
  outline: 1px solid var(--site-border);
}

.sb-venue-card__title {
  margin: 0;
  font-family: var(--site-font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--site-ink);
}

.sb-venue-card__lead {
  margin: 0.35rem 0 1.25rem;
  font-size: 0.875rem;
  color: var(--site-muted);
}

.sb-venue-aside .venue-whatsapp-enquiry-wrap,
.sb-venue-mobile-enquiry .venue-whatsapp-enquiry-wrap,
.sb-venue-aside .sb-enquiry {
  margin-top: 0;
}

.sb-venue-faq {
  margin-top: 5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--site-border);
}

.sb-venue-faq .venue-faq,
.sb-venue-related .venue-related-section {
  margin-bottom: 0;
}

.sb-venue-faq__title,
.sb-venue-related__title {
  margin: 0 0 1.5rem;
  font-family: var(--site-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--site-ink);
  border: 0;
  padding: 0;
}

.sb-venue-faq__accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1.15rem;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0 0 1.25rem;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-bg: transparent;
}

.sb-venue-faq__item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--site-border);
}

.sb-venue-faq__button {
  font-family: var(--site-font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--site-ink);
  box-shadow: none !important;
}

.sb-venue-faq__button:not(.collapsed) {
  color: var(--site-ink);
}

.sb-venue-faq__button::after {
  background-size: 1rem;
  opacity: 0.55;
}

.sb-venue-faq__answer {
  max-width: 42rem;
  padding-top: 0;
  padding-bottom: 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--site-muted);
}

.sb-venue-related {
  margin-top: 3.5rem;
  padding-bottom: 1rem;
}
