.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-a87cc4e:#F2ECE0;--e-global-color-1ec5f43:#000000;--e-global-color-63f801a:#FFFFFF;--e-global-color-862a47f:#FBB93E;--e-global-color-3044ffa:#5F3817;--e-global-color-deeba2d:#F37644;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-3e2513e-font-family:"Vidaloka";--e-global-typography-7ec5f7e-font-family:"IBM Plex Sans";}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================================
   BUENA VISTA — GLOBAL DESIGN SYSTEM
   Paste into: Elementor → Site Settings → Custom CSS
   OR: Appearance → Theme File Editor → style.css
   ============================================ */

/* ── BRAND VARIABLES ── */
:root {
  --bv-terra:        #C8562A;
  --bv-terra-dark:   #9E3D1A;
  --bv-terra-light:  #E8856A;
  --bv-gold:         #D4A843;
  --bv-gold-light:   #F0C96A;
  --bv-cream:        #FAF6EF;
  --bv-cream-dark:   #F0E8D8;
  --bv-brown:        #4A2C1A;
  --bv-brown-mid:    #7A4A2A;
  --bv-text:         #2C1A0E;
  --bv-text-light:   #6B4C35;
  --bv-white:        #FFFFFF;

  --bv-font-heading: 'Playfair Display', Georgia, serif;
  --bv-font-body:    'Lato', sans-serif;

  --bv-radius:       4px;
  --bv-shadow:       0 4px 24px rgba(74,44,26,0.1);
  --bv-transition:   all 0.2s ease;
}

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── TYPOGRAPHY ── */
.bv-h1 {
  font-family: var(--bv-font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--bv-brown);
  line-height: 1.2;
}

.bv-h2 {
  font-family: var(--bv-font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bv-brown);
  line-height: 1.25;
  margin-bottom: 20px;
}

.bv-h2-white {
  font-family: var(--bv-font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--bv-white);
  line-height: 1.25;
}

.bv-h3 {
  font-family: var(--bv-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bv-brown);
}

.bv-section-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bv-terra);
  margin-bottom: 14px;
}

.bv-body {
  font-family: var(--bv-font-body);
  font-size: 1.05rem;
  color: var(--bv-text-light);
  line-height: 1.8;
}

.bv-italic {
  color: var(--bv-terra);
  font-style: italic;
}

/* ── BUTTONS ── */
.bv-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--bv-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--bv-radius);
  border: 2px solid transparent;
  transition: var(--bv-transition);
  cursor: pointer;
}

.bv-btn-primary {
  background: var(--bv-terra);
  color: var(--bv-white);
  border-color: var(--bv-terra);
}

.bv-btn-primary:hover {
  background: var(--bv-terra-dark);
  border-color: var(--bv-terra-dark);
  color: var(--bv-white);
}

.bv-btn-outline-dark {
  background: transparent;
  color: var(--bv-brown);
  border-color: var(--bv-brown);
}

.bv-btn-outline-dark:hover {
  background: var(--bv-brown);
  color: var(--bv-white);
}

.bv-btn-outline-light {
  background: transparent;
  color: var(--bv-white);
  border-color: rgba(255,255,255,0.6);
}

.bv-btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--bv-white);
  color: var(--bv-white);
}

.bv-btn-white {
  background: var(--bv-white);
  color: var(--bv-terra-dark);
  border-color: var(--bv-white);
}

.bv-btn-white:hover {
  background: transparent;
  color: var(--bv-white);
}

/* ── SECTIONS ── */
.bv-section-cream {
  background: var(--bv-cream);
  padding: 80px 24px;
}

.bv-section-cream-dark {
  background: var(--bv-cream-dark);
  padding: 80px 24px;
}

.bv-section-brown {
  background: var(--bv-brown);
  padding: 80px 24px;
}

.bv-section-terra {
  background: var(--bv-terra);
  padding: 80px 24px;
}

.bv-section-white {
  background: var(--bv-white);
  padding: 80px 24px;
}

/* ── HERO ── */
.bv-hero {
  position: relative;
  background: var(--bv-brown);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 24px;
}

.bv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,86,42,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(212,168,67,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.bv-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bv-gold-light);
  border: 1px solid rgba(212,168,67,0.4);
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── CARDS ── */
.bv-card {
  background: var(--bv-white);
  border: 1px solid var(--bv-cream-dark);
  border-top: 3px solid var(--bv-terra);
  border-radius: var(--bv-radius);
  padding: 32px;
  box-shadow: var(--bv-shadow);
}

.bv-card-cream {
  background: var(--bv-cream);
  border: 1px solid var(--bv-cream-dark);
  border-radius: var(--bv-radius);
  padding: 32px;
}

/* ── PULL QUOTE ── */
.bv-quote {
  border-left: 3px solid var(--bv-terra);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--bv-cream-dark);
  border-radius: 0 var(--bv-radius) var(--bv-radius) 0;
}

.bv-quote p {
  font-family: var(--bv-font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--bv-brown);
  margin: 0;
}

/* ── STAT BLOCK ── */
.bv-stat-number {
  font-family: var(--bv-font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--bv-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.bv-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.bv-stat-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ── INFO ROWS ── */
.bv-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bv-cream-dark);
  font-size: 0.95rem;
  color: var(--bv-text-light);
}

.bv-info-row:last-child {
  border-bottom: none;
}

.bv-info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bv-terra);
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
}

/* ── DIVIDER ── */
.bv-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 160px;
  margin: 0 auto;
}

.bv-divider::before,
.bv-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bv-terra);
  opacity: 0.3;
}

.bv-divider-icon {
  color: var(--bv-terra);
  opacity: 0.5;
  font-size: 0.9rem;
}

/* ── ORNAMENT ── */
.bv-ornament {
  text-align: center;
  color: var(--bv-terra);
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  opacity: 0.4;
  padding: 32px 0;
}

/* ── NEIGHBOURHOOD PAGE SPECIFIC ── */
.bv-neighborhood-hero {
  background: var(--bv-brown);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bv-neighborhood-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,86,42,0.3) 0%, transparent 70%);
}

/* ── FAQ ── */
.bv-faq-item {
  border-bottom: 1px solid var(--bv-cream-dark);
  padding: 20px 0;
}

.bv-faq-question {
  font-family: var(--bv-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bv-brown);
  margin-bottom: 10px;
}

.bv-faq-answer {
  font-size: 0.98rem;
  color: var(--bv-text-light);
  line-height: 1.7;
}

/* ── CTA BAND ── */
.bv-cta-band {
  background: var(--bv-terra);
  padding: 70px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bv-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 24px
  );
}

/* ── UTILITY ── */
.bv-text-center  { text-align: center; }
.bv-text-white   { color: var(--bv-white) !important; }
.bv-text-terra   { color: var(--bv-terra) !important; }
.bv-text-gold    { color: var(--bv-gold) !important; }
.bv-text-brown   { color: var(--bv-brown) !important; }
.bv-text-muted   { color: var(--bv-text-light) !important; }
.bv-bg-cream     { background: var(--bv-cream); }
.bv-bg-brown     { background: var(--bv-brown); }
.bv-bg-terra     { background: var(--bv-terra); }
.bv-mt-sm        { margin-top: 16px; }
.bv-mt-md        { margin-top: 32px; }
.bv-mt-lg        { margin-top: 64px; }
.bv-mb-sm        { margin-bottom: 16px; }
.bv-mb-md        { margin-bottom: 32px; }
.bv-mb-lg        { margin-bottom: 64px; }
.bv-max-600      { max-width: 600px; margin-left: auto; margin-right: auto; }
.bv-max-800      { max-width: 800px; margin-left: auto; margin-right: auto; }
.bv-max-1000     { max-width: 1000px; margin-left: auto; margin-right: auto; }/* End custom CSS */