/* =============================================================================
   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 on dark slate background */
#header-section .navi.main-nav > li > a,
#header-section ul.main-nav > li > a,
.navi.main-nav > 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: rgba(255, 255, 255, 0.78) !important;
}

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

#header-section .navi.main-nav > li.current-menu-item > a,
#header-section .navi.main-nav > 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;
  box-shadow: var(--shadow-hover) !important;
}
#header-section .navi.main-nav .sub-menu a {
  color: rgba(255, 255, 255, 0.75) !important;
}
#header-section .navi.main-nav .sub-menu a:hover {
  color: var(--gold) !important;
  background: rgba(255,255,255,0.05) !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 */
.top-bar,
.top-bar-wrap {
  background-color: var(--navy) !important;
  color: rgba(255, 255, 255, 0.65) !important;
}
.top-bar a { color: rgba(255, 255, 255, 0.65) !important; }
.top-bar a:hover { color: var(--gold) !important; }

/* 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(--slate);
  padding: var(--sp-7) 0;
}

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

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

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

/* hz-grids: override Houzez location-block styling */
.sbv-types .location-module,
.sbv-cities .location-module { margin-bottom: 0; }

.sbv-types .location-block,
.sbv-cities .location-block {
  border-radius: var(--r-md);
  overflow: hidden;
  transition: opacity 0.25s ease;
}
.sbv-types .location-block:hover,
.sbv-cities .location-block:hover { opacity: 0.9; }

.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: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
  font-size: var(--fs-small);
}

#footer-section a {
  color: rgba(255, 255, 255, 0.5);
  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: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.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; }
}
