/* =============================================================================
   SBV Site Stylesheet
   Single file. No !important except where explicitly overriding Houzez inline CSS.
   Build: 2026-06-05 full editorial rebuild
   ============================================================================= */

/* 1. FONTS
   ----------------------------------------------------------------------- */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/jost.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* 2. DESIGN TOKENS
   ----------------------------------------------------------------------- */

:root {
  --slate:     #1C3A4A;
  --slate-lt:  #E4ECF0;
  --sand:      #E8DDD0;
  --ivory:     #FAF7F2;
  --gold:      #B8944A;
  --gold-lt:   #D4B06A;
  --text:      #2C2C2C;
  --text-lt:   #6B6B6B;
  --white:     #FFFFFF;
  --navy:      #0e2330;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, -apple-system, sans-serif;

  --fs-h1:      clamp(40px, 5vw, 72px);
  --fs-h2:      clamp(28px, 3.5vw, 48px);
  --fs-h3:      clamp(20px, 2.5vw, 30px);
  --fs-eyebrow: 11px;
  --fs-body:    16px;
  --fs-small:   13px;
  --fs-nav:     12px;

  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;

  --r-sm: 2px;
  --r-md: 4px;

  --shadow-card:  0 2px 12px rgba(28,58,74,0.07);
  --shadow-hover: 0 10px 32px rgba(28,58,74,0.13);

  --container-max: 1200px;
  --container-px:  clamp(20px, 4vw, 48px);
}


/* 3. GLOBAL RESET & BASE
   ----------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--slate);
  margin-top: 0;
}

p { margin-top: 0; margin-bottom: var(--sp-5); }

.eyebrow,
.sbv-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}


/* 4. LAYOUT UTILITIES
   ----------------------------------------------------------------------- */

.sbv-container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.sbv-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 42px;
}

.sbv-section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 0;
}

.sbv-section-link {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  white-space: nowrap;
}
.sbv-section-link:hover { color: var(--gold); }

/* Buttons */
.sbv-btn {
  display: inline-block;
  background: var(--slate);
  color: var(--white);
  padding: 14px 34px;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background 0.2s ease;
}
.sbv-btn:hover { background: var(--gold); color: var(--white); }

.sbv-btn--gold {
  background: var(--gold);
  color: var(--white);
}
.sbv-btn--gold:hover { background: var(--gold-lt); color: var(--white); }


/* 5. NAV OVERRIDES
   Actual Houzez selectors confirmed via browser inspection:
   - Main header: #header-section (.houzez-header-main)
   - Nav links: .navi.main-nav > li > a
   ----------------------------------------------------------------------- */

#header-section,
#header-section.houzez-header-main {
  background-color: var(--slate) !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Nav links — correct selector: nav.navi.main-nav > ul > li > a
   (Houzez renders: <nav class="navi main-nav"><ul id="main-nav">...)
   Previous versions used > li > a (no ul), which never matched. */
#header-section .navi.main-nav > ul > li > a,
.header-section .navi.main-nav > ul > li > a {
  font-family: var(--font-sans) !important;
  font-size: var(--fs-nav) !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
}

#header-section .navi.main-nav > ul > li > a:hover,
.header-section .navi.main-nav > ul > li > a:hover {
  color: var(--gold) !important;
}

#header-section .navi.main-nav > ul > li.current-menu-item > a,
#header-section .navi.main-nav > ul > li.current-page-ancestor > a {
  color: var(--gold) !important;
}

/* Dropdown */
#header-section .navi.main-nav .sub-menu,
#header-section .dropdown-menu {
  background: var(--slate) !important;
  border-top: 2px solid var(--gold) !important;
  border-radius: 0 0 var(--r-md) var(--r-md) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25) !important;
  padding: 8px 0 !important;
  min-width: 180px !important;
}
#header-section .navi.main-nav > ul ul li { border: none !important; }
#header-section .navi.main-nav > ul ul li a {
  color: rgba(255, 255, 255, 0.82) !important;
  padding: 10px 20px !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  border-bottom: none !important;
  border-top: none !important;
}
#header-section .navi.main-nav > ul ul li a:hover {
  color: var(--gold) !important;
  background: rgba(255,255,255,0.06) !important;
}
#header-section .navi.main-nav > ul ul li.divider,
#header-section .navi.main-nav > ul ul li.separator { display: none !important; }

/* Dropdown toggle arrow color */
#header-section .navi.main-nav > li > a .fa,
#header-section .navi.main-nav > li > a .caret { color: rgba(255,255,255,0.5) !important; }

/* Top utility bar — hidden on sbv theme */
.top-bar,
.top-bar-wrap { display: none !important; }

/* Header logo — invert to white so any dark logo reads on slate nav */
#header-section .logo img,
#header-section .logo-desktop img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Mobile nav */
.header-mobile,
.header-mobile-logo-area { background: var(--slate) !important; }
.hamburger-menu span,
.hamburger-menu span::before,
.hamburger-menu span::after { background-color: var(--white) !important; }
.mobile-logo a { color: var(--white) !important; }


/* 6. HERO — RevSlider editorial overlay
   ----------------------------------------------------------------------- */

.sbv-hero-wrap {
  position: relative;
  overflow: hidden;
}

/* Hide RevSlider's own text layers — we show our editorial overlay instead */
.sbv-hero-wrap .tp-caption,
.sbv-hero-wrap .rs-layer,
.sbv-hero-wrap .tp-parallax-wrap { display: none !important; }

/* Dark gradient over the RevSlider photo for text legibility */
.sbv-hero-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 35, 48, 0.55) 0%,
    rgba(28, 58, 74, 0.6) 50%,
    rgba(14, 35, 48, 0.85) 100%
  );
  pointer-events: none;
  z-index: 5;
}

.sbv-hero-editorial {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--container-px);
  padding-bottom: 48px;
}

.sbv-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.sbv-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  max-width: 780px;
  margin-bottom: 18px;
}

.sbv-hero-h1 em {
  font-style: italic;
  color: var(--sand);
}

.sbv-hero-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Search bar */
.sbv-search-bar {
  display: flex;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.28);
  max-width: 720px;
  width: 90%;
}

.sbv-search-keyword {
  flex: 1;
  min-width: 0;
  padding: 0 22px;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  background: transparent;
  outline: none;
  height: 56px;
  letter-spacing: 0.02em;
}

.sbv-search-divider {
  width: 1px;
  height: 32px;
  background: var(--sand);
  align-self: center;
  flex-shrink: 0;
}

.sbv-search-select {
  padding: 0 18px;
  border: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-lt);
  background: transparent;
  outline: none;
  height: 56px;
  appearance: none;
  cursor: pointer;
  min-width: 140px;
}

.sbv-search-btn {
  background: var(--slate);
  color: var(--white);
  border: none;
  padding: 0 28px;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  height: 56px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.sbv-search-btn:hover { background: var(--gold); }

/* Hide the old Houzez Advanced Search collapse button */
.search-expand-btn,
.search-inner-wrap { display: none !important; }


/* 7. FILTER PILLS
   ----------------------------------------------------------------------- */

.sbv-filter-strip {
  background: var(--sand);
  padding: 20px var(--container-px);
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sbv-filter-strip::-webkit-scrollbar { display: none; }

.sbv-filter-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-right: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.sbv-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(28, 58, 74, 0.28);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--slate);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
}

.sbv-filter-pill:hover,
.sbv-filter-pill--active {
  background: var(--slate);
  border-color: var(--slate);
  color: var(--white);
}


/* 8. FEATURED VENUES
   ----------------------------------------------------------------------- */

.sbv-featured-section {
  background: var(--ivory);
  padding: var(--sp-9) 0;
}

.sbv-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Wide featured card */
.sbv-venue-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease;
}
.sbv-venue-card--wide:hover { box-shadow: var(--shadow-hover); }

.sbv-venue-card--wide .sbv-venue-card__img-link { display: block; }
.sbv-venue-card--wide .sbv-venue-card__thumb {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  background: var(--slate-lt);
}
.sbv-venue-card--wide .sbv-venue-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sbv-venue-card--wide .sbv-venue-card__body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Standard card */
.sbv-venue-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.sbv-venue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.sbv-venue-card__img-link { display: block; overflow: hidden; }

.sbv-venue-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--slate-lt);
}
.sbv-venue-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sbv-venue-card:hover .sbv-venue-card__thumb img { transform: scale(1.04); }

.sbv-venue-card__type {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  background: rgba(28, 58, 74, 0.85);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--r-sm);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.sbv-featured-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  margin-bottom: 10px;
}

.sbv-venue-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 8px;
}

.sbv-venue-card__body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sbv-venue-card__title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--slate);
  margin-bottom: 8px;
}
.sbv-venue-card--wide .sbv-venue-card__title { font-size: clamp(22px, 2.5vw, 32px); }
.sbv-venue-card__title a { color: inherit; }
.sbv-venue-card__title a:hover { color: var(--gold); }

.sbv-venue-card__address {
  font-size: var(--fs-small);
  color: var(--text-lt);
  margin-bottom: var(--sp-4);
}

.sbv-venue-card__footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--sand);
}

.sbv-venue-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  margin-top: 18px;
  width: fit-content;
  transition: color 0.2s ease;
}
.sbv-venue-card__cta:hover { color: var(--gold); }


/* 9. VALUE STRIP
   ----------------------------------------------------------------------- */

.sbv-value-strip {
  background: var(--slate);
  padding: 64px var(--container-px);
}

.sbv-value-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0 48px;
  align-items: center;
}

.sbv-value-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  justify-self: center;
}

.sbv-value-item { text-align: center; }

.sbv-value-number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.sbv-value-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}


/* 10. ABOUT / SOLERA STRIP
    ----------------------------------------------------------------------- */

.sbv-about-strip {
  background: var(--sand);
  padding: var(--sp-9) var(--container-px);
}

.sbv-about-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sbv-about-photo {
  height: 400px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--slate-lt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sbv-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sbv-about-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--slate);
  line-height: 1.22;
  margin-bottom: 20px;
}

.sbv-about-body {
  font-size: 15px;
  color: var(--text-lt);
  line-height: 1.78;
  margin-bottom: 32px;
}
.sbv-about-body a { color: var(--slate); font-weight: 500; }
.sbv-about-body a:hover { color: var(--gold); }


/* 11. BROWSE BY TYPE / LOCATION (hz-grids grid_v1)
    ----------------------------------------------------------------------- */

.sbv-types {
  background: var(--ivory);
  padding: var(--sp-7) 0;
}

.sbv-types .hz-section-title,
.sbv-types .hz-section-title h2,
.sbv-types .section-title-head {
  color: var(--slate) !important;
  font-family: var(--font-serif) !important;
  font-weight: 300 !important;
  text-align: center;
}

.sbv-cities {
  background: var(--ivory);
  padding: var(--sp-7) 0;
}

/* hz-grids: remove module padding that Houzez adds */
.sbv-types .location-module,
.sbv-cities .location-module {
  margin: 0 !important;
  padding: 0 !important;
}
.sbv-types .houzez-module,
.sbv-cities .houzez-module {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Location block: clip for zoom; images are CSS background-image (no <img> tag) */
.sbv-types .location-block,
.sbv-cities .location-block {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}

/* Zoom via ::before pseudo-element inheriting the inline background-image.
   background-image: inherit copies the inline style so we can transform it
   independently while leaving the centred caption absolutely positioned. */
.sbv-types .location-block::before,
.sbv-cities .location-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}
.sbv-types .location-block:hover::before,
.sbv-cities .location-block:hover::before {
  transform: scale(1.08);
}

/* Subtle gradient for text legibility — light touch, mostly transparent */
.sbv-types .location-block::after,
.sbv-cities .location-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 35, 48, 0.0)  0%,
    rgba(14, 35, 48, 0.12) 40%,
    rgba(14, 35, 48, 0.42) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Caption and link sit above both image and gradient */
.sbv-types .location-block a,
.sbv-cities .location-block a { z-index: 3; }

.sbv-types .location-block .location-fig-caption,
.sbv-cities .location-block .location-fig-caption { z-index: 3; }

/* Caption fonts — Houzez centres absolutely; we override fonts only */
.sbv-types .location-block .heading,
.sbv-cities .location-block .heading {
  font-family: var(--font-serif) !important;
  font-size: clamp(24px, 2.8vw, 36px) !important;
  font-weight: 300 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.02em !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
}

.sbv-types .location-block .sub-heading,
.sbv-cities .location-block .sub-heading {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
}

.sbv-types .location-fig-caption .heading,
.sbv-cities .location-fig-caption .heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.sbv-types .location-fig-caption .sub-heading,
.sbv-cities .location-fig-caption .sub-heading {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}


/* 12. CTA BANNER
    ----------------------------------------------------------------------- */

.sbv-cta-banner {
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 100%);
  padding: var(--sp-9) var(--container-px);
  text-align: center;
}

.sbv-cta-banner__h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.sbv-cta-banner__h2 em { color: var(--gold); font-style: italic; }

.sbv-cta-banner__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}


/* 13. FOOTER
    ----------------------------------------------------------------------- */

#footer-section {
  background: #000000;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 15px;
}

#footer-section a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}
#footer-section a:hover { color: var(--white); }

.sbv-footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 56px var(--container-px) 0;
}

.sbv-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.sbv-footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.sbv-footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 8px;
}

.sbv-footer-attribution {
  font-size: 12px;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 8px;
}
.sbv-footer-attribution a { color: var(--gold) !important; }
.sbv-footer-attribution a:hover { color: var(--gold-lt) !important; }

.sbv-footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sbv-footer-col ul { list-style: none; padding: 0; margin: 0; }
.sbv-footer-col ul li { margin-bottom: 10px; }
.sbv-footer-col ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
}
.sbv-footer-col ul li a:hover { color: var(--white); }

.sbv-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

/* Houzez footer-bottom (copyright bar) */
#footer-section .footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  padding: 18px var(--container-px);
}
#footer-section .footer-bottom a { color: rgba(255, 255, 255, 0.35); }
#footer-section .footer-bottom a:hover { color: var(--gold); }


/* 14. LISTING PAGE
    ----------------------------------------------------------------------- */

.listing-content-wrap,
.page-with-sidebar { background: var(--ivory); }

.listing-content-wrap h1,
.listing-content-wrap .page-title,
.title-head {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--slate);
}

/* Sidebar widget headings */
.sidebar-widget .widget-title,
.sidebar-widget h3 {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-lt);
  border-bottom: 1px solid var(--sand);
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-4);
}

/* Taxonomy widget links */
.houzez_property_taxonomies .tab-taxonomies-widget a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  display: block;
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(232, 221, 208, 0.5);
}
.houzez_property_taxonomies .tab-taxonomies-widget a:hover { color: var(--gold); }
.houzez_property_taxonomies .tab-taxonomies-widget .current-cat > a { color: var(--gold); font-weight: 500; }

/* Venue cards in listing — override Houzez's default list-view card styles */
.sbv-venue-card { margin-bottom: 28px; }

/* Listing page search bar (orange override) */
body .btn-orange,
body .btn.btn-orange,
body .advanced-search .btn.btn-orange,
body .splash-search .btn-orange,
body .advance-search-header .houzez-theme-button,
body .advanced-search-mobile .houzez-theme-button {
  background-color: var(--slate) !important;
  border-color: var(--slate) !important;
  color: var(--white) !important;
}
body .btn-orange:hover,
body .btn.btn-orange:hover { background-color: var(--gold) !important; border-color: var(--gold) !important; }


/* 15. SINGLE VENUE
    ----------------------------------------------------------------------- */

.single-property .property-title h1,
.single-property .property-heading { font-family: var(--font-serif); font-weight: 400; color: var(--slate); }

.agent-info-wrap,
.property-agent-wrap {
  background: var(--ivory);
  border: 1px solid var(--sand);
  border-radius: var(--r-md);
  padding: var(--sp-6);
}

.agent-contact-form input[type="submit"],
.agent-contact-form button[type="submit"] {
  background: var(--slate);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  padding: var(--sp-4) var(--sp-7);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background 0.2s ease;
}
.agent-contact-form input[type="submit"]:hover { background: var(--gold); }


/* 16. LEAD FORM PAGE
    ----------------------------------------------------------------------- */

.page-template-lead-form { background: var(--ivory); }

.sbv-lead-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--sp-9) var(--container-px);
}

.sbv-lead-form-wrap .wpforms-container input[type="text"],
.sbv-lead-form-wrap .wpforms-container input[type="email"],
.sbv-lead-form-wrap .wpforms-container textarea {
  font-family: var(--font-sans);
  border: 1px solid rgba(28, 58, 74, 0.2);
  border-radius: var(--r-sm);
  padding: var(--sp-4);
}
.sbv-lead-form-wrap .wpforms-container input:focus,
.sbv-lead-form-wrap .wpforms-container textarea:focus {
  outline: none;
  border-color: var(--slate);
}

.sbv-lead-form-wrap .wpforms-container .wpforms-submit-container button {
  background: var(--slate);
  color: var(--white);
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r-sm);
  padding: var(--sp-4) var(--sp-8);
  cursor: pointer;
  transition: background 0.2s ease;
}
.sbv-lead-form-wrap .wpforms-container .wpforms-submit-container button:hover { background: var(--gold); }


/* 17. MISC HOUZEZ OVERRIDES
    ----------------------------------------------------------------------- */

/* Breadcrumbs */
.breadcrumb-wrap, .houzez-breadcrumb { font-family: var(--font-sans); font-size: var(--fs-small); color: var(--text-lt); }
.houzez-breadcrumb a { color: var(--text-lt); }
.houzez-breadcrumb a:hover { color: var(--gold); }

/* Section title shortcode */
.hz-section-title-wrap .hz-line-divider { background: var(--gold); }

/* Pagination */
.houzez-pagination .page-numbers {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--sand);
  border-radius: var(--r-sm);
  margin: 0 2px;
}
.houzez-pagination .page-numbers:hover,
.houzez-pagination .page-numbers.current { background: var(--slate); color: var(--white); border-color: var(--slate); }

/* Primary button */
.btn-primary, .btn.btn-primary {
  background: var(--slate);
  border-color: var(--slate);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }


/* 18. RESPONSIVE
    ----------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .sbv-featured-grid { grid-template-columns: 1fr 1fr; }
  .sbv-venue-card--wide {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
  }
  .sbv-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sbv-value-inner { grid-template-columns: 1fr; gap: 32px; }
  .sbv-value-divider { display: none; }
  .sbv-about-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .sbv-featured-grid { grid-template-columns: 1fr; }
  .sbv-venue-card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .sbv-venue-card--wide .sbv-venue-card__thumb { min-height: 220px; }
  .sbv-about-inner { grid-template-columns: 1fr; gap: 32px; }
  .sbv-about-photo { height: 260px; }
  .sbv-footer-top { grid-template-columns: 1fr 1fr; }
  .sbv-footer-brand { grid-column: span 2; }
  .sbv-search-select { display: none; }
  .sbv-search-divider { display: none; }
  .sbv-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .sbv-footer-top { grid-template-columns: 1fr; }
  .sbv-footer-brand { grid-column: span 1; }
}


/* 19. FULL-BLEED HOMEPAGE
    Houzez header.php wraps non-property pages in <div class="container">
    inside #section-body. Remove that constraint on the front page so sbv
    sections stretch edge-to-edge. Each section controls its own inner
    max-width via .sbv-container.
    ----------------------------------------------------------------------- */

body.front-page #section-body > .container,
body.home #section-body > .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove gap between last section and footer — Houzez #section-body has
   default padding-bottom that shows body background as a strip. */
body.front-page #section-body,
body.home #section-body {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Browse section headers: tight gap to image grid */
.sbv-types .sbv-section-header,
.sbv-cities .sbv-section-header {
  margin-bottom: 16px;
}

/* Kill h2 bottom margin inside browse headers (browser default adds ~20px) */
.sbv-types .sbv-section-header .sbv-section-title,
.sbv-cities .sbv-section-header .sbv-section-title {
  margin-bottom: 0;
}


/* =============================================================================
   20. LISTING PAGE HERO (static-image header override)
   ============================================================================= */

.sbv-listing-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  background-color: var(--slate);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Dark gradient — bottom-heavy so text at bottom is legible */
.sbv-listing-hero__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 35, 48, 0.20) 0%,
    rgba(14, 35, 48, 0.55) 55%,
    rgba(14, 35, 48, 0.82) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.sbv-listing-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--container-px) 48px;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}

.sbv-listing-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.sbv-listing-hero__sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Filter strip — breaks out of Bootstrap container (15px padding each side)
   so the beige band runs edge-to-edge. Content rows keep natural 15px gutter. */
.sbv-listing-filter-strip {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 20px;
  padding-right: 20px;
  justify-content: flex-start;
}

/* Sort select inline in filter strip — pushed to the right */
.sbv-sort-inline {
  margin-left: auto;
  flex-shrink: 0;
}

.sbv-sort-select {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  appearance: none;
  padding: 0 18px 0 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%231C3A4A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
}
.sbv-sort-select:focus { outline: none; }

/* 3-column venue card grid — respects Houzez's float:right content area */
.sbv-listing-grid .row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sbv-listing-grid .row .sbv-venue-card {
  float: none !important;
  width: auto !important;
  margin-bottom: 0;
}

/* ── Sidebar widgets ─────────────────────────────────────────────────────── */

.container-sidebar .widget {
  margin-bottom: 32px;
}

.container-sidebar .widget-title {
  font-family: var(--font-sans) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  border-bottom: 1px solid var(--sand) !important;
  padding-bottom: 10px !important;
  margin-bottom: 14px !important;
  background: none !important;
}

.container-sidebar .tab-taxonomies-widget { list-style: none; padding: 0; margin: 0; }

.container-sidebar .tab-taxonomies-widget li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(232, 221, 208, 0.5);
}

.container-sidebar .tab-taxonomies-widget li a {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  color: var(--text) !important;
  text-decoration: none !important;
  padding: 7px 0 !important;
  flex: 1;
  display: block !important;
}
.container-sidebar .tab-taxonomies-widget li a:hover { color: var(--gold) !important; }

/* Count badge sits right-aligned */
.container-sidebar .tab-taxonomies-widget .term-count,
.container-sidebar .tab-taxonomies-widget .count {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-lt);
  margin-left: 8px;
  flex-shrink: 0;
}

/* "Need help with your event?" promo widget */
.container-sidebar .textwidget img { border-radius: var(--r-md); display: block; width: 100%; }
.container-sidebar .textwidget p { font-family: var(--font-sans); font-size: 13px; color: var(--text-lt); line-height: 1.6; margin-bottom: 6px; }
.container-sidebar .textwidget a { color: var(--slate); font-weight: 500; }
.container-sidebar .textwidget a:hover { color: var(--gold); }

/* Listing row top spacing */
.sbv-listing-row { padding-top: 28px; }


/* =============================================================================
   21. VENUE INDEX PAGE (By Type / By Location parent pages)
   ============================================================================= */

.sbv-index-intro {
  background: var(--ivory);
  padding: 64px var(--container-px) 48px;
  border-bottom: 1px solid var(--sand);
}

.sbv-index-intro .sbv-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.sbv-index-intro__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--slate);
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.sbv-index-intro__title em { font-style: italic; color: var(--gold); }

.sbv-index-intro__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-lt);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.sbv-index-grid {
  background: var(--ivory);
  padding: 48px var(--container-px) 80px;
}

.sbv-index-grid__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Location index sometimes has 6 items — allow wrap */
@supports (grid-template-columns: repeat(auto-fill, minmax(240px, 1fr))) {
  .sbv-index-grid__inner {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.sbv-index-tile {
  position: relative;
  display: block;
  height: 260px;
  border-radius: var(--r-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--slate);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sbv-index-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(14, 35, 48, 0.22);
}

.sbv-index-tile__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 35, 48, 0.0)  30%,
    rgba(14, 35, 48, 0.72) 100%
  );
  z-index: 1;
  transition: opacity 0.3s ease;
}
.sbv-index-tile:hover .sbv-index-tile__grad {
  opacity: 0.85;
}

.sbv-index-tile__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  z-index: 2;
}

.sbv-index-tile__label {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.sbv-index-tile__count {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* Full-bleed index page */
body.page-template-page-templates-venue-index #section-body > .container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 1024px) {
  .sbv-listing-grid .row { grid-template-columns: repeat(2, 1fr); }
  .sbv-index-grid__inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .sbv-listing-hero { height: 300px; }
  .sbv-listing-grid .row { grid-template-columns: 1fr 1fr; }
  .sbv-index-grid__inner { grid-template-columns: 1fr 1fr; }
  .sbv-index-tile { height: 200px; }
}

@media (max-width: 480px) {
  .sbv-listing-grid .row { grid-template-columns: 1fr; }
  .sbv-index-grid__inner { grid-template-columns: 1fr; }
}


/* =============================================================================
   22. VENUE CARD THUMBNAIL FALLBACK
   When a venue has no thumbnail, houzez_image_placeholder() outputs
   an <img> tag from a placeholder service. Give the thumb div a min-height
   and slate background so it never collapses to zero height.
   ============================================================================= */

.sbv-venue-card__thumb {
  min-height: 180px;
  background: var(--slate-lt);
}

.sbv-venue-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sidebar "Need help" promo widget — clean up justification */
.container-sidebar .textwidget { text-align: center; }
.container-sidebar .textwidget p[style*="text-align:justify"] { text-align: left !important; }


/* Bootstrap .row clearfix pseudo-elements become grid items when display:grid
   is applied, pushing all cards one column to the right. Suppress them. */
.sbv-listing-grid .row::before,
.sbv-listing-grid .row::after {
  display: none !important;
  content: none !important;
}


/* =============================================================================
   23. LISTING PAGE — FULL-WIDTH LAYOUT (no sidebar)
   Two-row filter strip: TYPE row + AREA row.
   Pills sorted by count desc (server-side). Overflow: hidden — extras drop off
   at narrow widths rather than creating a horizontal scroll.
   ============================================================================= */

/* Full-bleed strip: viewport-width breakout works for any container width.
   The -50vw / translateX trick escapes both the 15px padding AND the
   container max-width (1170px on desktop). overflow:visible keeps dropdowns
   from clipping. */
.sbv-listing-filter-strip {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--sand);
  padding: 12px 0;
  overflow: visible;
}

/* Inner: centered within full-bleed bar, left-aligned content */
.sbv-filter-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 15px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Each row: label + pills, single line, extras hidden */
.sbv-filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden;  /* graceful drop — extras disappear, no scroll */
  min-height: 34px;
}

/* Controls row removed (no dropdowns) */
.sbv-filter-controls { display: none; }

/* Full-width card area */
.sbv-listing-cards-wrap {
  padding-top: 32px;
  padding-bottom: 8px;
}

.sbv-listing-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* Solera section on listing pages — same full-bleed as filter strip */
.sbv-listing-about {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 0 !important;
}

/* No gap between Solera strip and footer */
.sbv-listing-about + * { margin-top: 0; }
#section-body:has(.sbv-listing-about:last-child) {
  padding-bottom: 0 !important;
}

/* Pagination center */
.houzez-pagination {
  text-align: center;
  margin-bottom: 40px;
}

/* Hide old Bootstrap sidebar row */
.sbv-listing-row { display: none; }

@media (max-width: 1024px) {
  .sbv-listing-grid-full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sbv-listing-grid-full { grid-template-columns: 1fr; }
  .sbv-listing-filter-strip { padding: 10px 15px; }
}

/* Bootstrap .row clearfix ghost grid items — suppress */
.sbv-listing-grid-full::before,
.sbv-listing-grid-full::after { display: none !important; content: none !important; }
/* Filter state summary bar */
.sbv-filter-summary {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-lt);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--sand);
}
.sbv-filter-clear {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sbv-filter-clear:hover { color: var(--gold); }

.sbv-no-results {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-lt);
  grid-column: 1 / -1;
  padding: 48px 0;
  text-align: center;
}


/* =============================================================================
   24. BROWSE PAGE — section-body padding + nav parent suppression
   ============================================================================= */

/* No gap between Solera section and footer on browse/listing pages */
body.page-template-page-templates-venue-browse #section-body {
  padding-bottom: 0 !important;
}

/* Suppress gold highlight on # nav items (BY TYPE / BY LOCATION dropdown triggers) */
#header-section .navi.main-nav > ul > li > a[href="#"] {
  color: rgba(255,255,255,0.85) !important;
}
#header-section .navi.main-nav > ul > li > a[href="#"]:hover {
  color: var(--gold) !important;
}

/* Browse hero: slightly shorter than homepage (no search form) */
.sbv-hero-wrap--browse .rs-fullwidth-wrap,
.sbv-hero-wrap--browse .rev_slider_wrapper { min-height: 360px !important; }

.sbv-hero-editorial--browse {
  padding-bottom: 56px;
}

/* =============================================================================
   25. BROWSE PAGE — hero height, footer fixes, scroll-to-top
   ============================================================================= */

/* Shorter hero on browse page vs homepage */
body.page-template-page-templates-venue-browse .sbv-hero-wrap .rs-fullwidth-wrap { 
  max-height: 380px !important;
  min-height: 320px !important;
}
body.page-template-page-templates-venue-browse .sbv-hero-wrap .rev_slider_wrapper {
  max-height: 380px !important;
}

/* Hide Houzez footer-bottom (copyright now in brand column) */
#footer-section .footer-bottom { display: none !important; }

/* Hide Houzez scroll-to-top arrow (class confirmed: .scrolltop-btn) */
.scrolltop-btn { display: none !important; }

/* Copyright line in brand column */
.sbv-footer-copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.5;
}


/* =============================================================================
   26. PAGINATION — sbv theme override
   ============================================================================= */

.pagination-main { margin: 8px 0 48px; }
.pagination-main .pagination { font-size: 0; text-align: center; }

.pagination-main .pagination li {
  display: inline-block;
  margin: 0 3px 6px;
}

.pagination-main .pagination li a,
.pagination-main .pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 400;
  color: var(--text) !important;
  background: var(--white);
  border: 1px solid var(--sand) !important;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.pagination-main .pagination li a:hover {
  background: var(--ivory) !important;
  border-color: var(--slate) !important;
  color: var(--slate) !important;
}

/* Active page */
.pagination-main .pagination li.active a,
.pagination-main .pagination li.active span {
  background: var(--slate) !important;
  border-color: var(--slate) !important;
  color: var(--white) !important;
  font-weight: 500;
}

/* First (Prev) and last (Next) items — label style */
.pagination-main .pagination li:first-child a,
.pagination-main .pagination li:last-child a {
  font-size: 11px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate) !important;
  background: transparent !important;
  border-color: transparent !important;
}
.pagination-main .pagination li:first-child a:hover,
.pagination-main .pagination li:last-child a:hover {
  color: var(--gold) !important;
  border-color: transparent !important;
  background: transparent !important;
}
