/*
Theme Name: Aurora Theme
Theme URI: https://bryan-v1.homepage.studio
Description: Bryan Meere V1 — Royal LePage Red & White Campaign
Version: 4.0
Author: HomePage.Studio
*/

/* ═══════════════════════════════════════════
   ROOT PALETTE — Royal LePage Compliant
   ═══════════════════════════════════════════ */
:root {
  --black: #141414;
  --black-soft: #252525;
  --black-card: #FFFFFF;
  --black-card-hover: #FFF4F6;
  --grey-dark: #4C4C4C;
  --grey-mid: #6E6E6E;
  --grey-border: #F1D7DD;
  --white: #FFFFFF;
  --white-muted: #545454;
  --white-dim: #7A7A7A;
  --red: #D91F3A;
  --red-hover: #B81830;
  --red-glow: rgba(217, 31, 58, 0.12);

  --font-display: 'Helvetica Neue', 'Arial', sans-serif;
  --font-body: 'Helvetica Neue', 'Arial', sans-serif;

  --gap: clamp(8px, 1.2vw, 16px);
  --radius: 4px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: #1A1A1A;
  background: #FFF8F8;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════════
   PAGE WRAPPER
   ═══════════════════════════════════════════ */
.bento-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 40px);
}

/* Old top-bar section removed — see "Shared header upgrade" below */

/* ═══════════════════════════════════════════
   HERO NAME — Massive typographic statement
   ═══════════════════════════════════════════ */
.hero-name {
  padding: 0 0 clamp(16px, 2vw, 32px);
  overflow: hidden;
}

.hero-name h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 160px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #1A1A1A;
  text-transform: uppercase;
  position: relative;
}

.hero-name h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #D91F3A 0%, #C81832 100%);
  margin-top: clamp(12px, 2vw, 24px);
}

/* ═══════════════════════════════════════════
   BENTO GRID — Main layout engine
   ═══════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(80px, auto);
  gap: var(--gap);
}

.bento-cell {
  background: #FFFFFF;
  border: 1px solid var(--grey-border); box-shadow: 0 18px 40px rgba(217,31,58,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s ease, background 0.4s ease;
}

.bento-cell:hover {
  border-color: rgba(217, 31, 58, 0.22);
  background: #FFF3F5;
}

/* ── Cell: Portrait (large, spans left) ── */
.cell--portrait {
  grid-column: 1 / 7;
  grid-row: 1 / 6;
}

.cell--portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* ── Cell: Stat block ── */
.cell--stat {
  grid-column: 7 / 10;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 3vw, 40px);
}

.cell--stat .stat-number {
  display: block;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  line-height: 0.9;
  color: #1A1A1A;
}

.cell--stat .stat-label {
  display: block;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6E6E6E;
  margin-top: 10px;
  line-height: 1.2;
}

.cell--stat .stat-accent {
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #D91F3A 0%, #C81832 100%);
  margin-top: 16px;
}

/* ── Cell: Tagline / quote ── */
.cell--tagline {
  grid-column: 10 / 13;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 3vw, 40px);
  border-left: 2px solid var(--red);
}

.cell--tagline blockquote {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.4;
  color: #4C4C4C;
  font-style: italic;
}

.cell--tagline .tagline-attr {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6E6E6E;
  margin-top: 16px;
}

/* ── Cell: Communities ── */
.cell--communities {
  grid-column: 7 / 10;
  grid-row: 3 / 5;
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cell--communities h3 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6E6E6E;
  margin-bottom: 16px;
}

.community-list {
  list-style: none;
}

.community-list li {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 500;
  color: #555555;
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-border);
  transition: color 0.3s, padding-left 0.3s;
}

.community-list li:last-child {
  border-bottom: none;
}

.community-list li:hover {
  color: #1A1A1A;
  padding-left: 8px;
}

.community-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #D91F3A 0%, #C81832 100%);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}

/* ── Cell: CTA ── */
.cell--cta {
  grid-column: 10 / 13;
  grid-row: 3 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(135deg, #D91F3A 0%, #C81832 100%);
  border-color: var(--red);
  cursor: pointer;
  transition: all 0.4s ease;
}

.cell--cta:hover {
  background: var(--red-hover);
  box-shadow: 0 0 60px var(--red-glow);
  border-color: var(--red-hover);
}

.cell--cta .cta-text {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: #1A1A1A;
}

.cell--cta .cta-sub {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

.cell--cta .cta-arrow {
  font-size: 28px;
  margin-top: 12px;
  transition: transform 0.3s;
}

.cell--cta:hover .cta-arrow {
  transform: translateX(6px);
}

/* ── Cell: About strip ── */
.cell--about {
  grid-column: 7 / 13;
  grid-row: 5 / 6;
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: 24px;
}

.cell--about p {
  font-size: clamp(15.6px, 1.32vw, 19.2px);
  line-height: 1.7;
  color: #555555;
}

.cell--about .about-tag {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6E6E6E;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BOTTOM ROW — Stats + credentials
   ═══════════════════════════════════════════ */
.bento-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-top: var(--gap);
}

.bottom-cell {
  background: #FFFFFF;
  border: 1px solid var(--grey-border); box-shadow: 0 18px 40px rgba(217,31,58,0.08);
  border-radius: var(--radius);
  padding: clamp(20px, 2.5vw, 36px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: border-color 0.4s ease, transform 0.3s ease;
}

.bottom-cell:hover {
  border-color: #333;
  transform: translateY(-2px);
}

.bottom-cell .bc-number {
  display: block;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: #1A1A1A;
  line-height: 0.95;
}

.bottom-cell .bc-label {
  display: block;
  min-height: 2.6em;
  font-size: clamp(10px, 0.9vw, 13px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6E6E6E;
  margin-top: 10px;
  line-height: 1.25;
}

.bottom-cell .bc-accent {
  width: 24px;
  height: 2px;
  background: linear-gradient(135deg, #D91F3A 0%, #C81832 100%);
  margin: 12px auto 0;
}

/* ═══════════════════════════════════════════
   FOOTER — Minimal
   ═══════════════════════════════════════════ */
.bento-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 16px;
  border-top: 1px solid var(--grey-border);
  margin-top: clamp(24px, 3vw, 48px);
}

.bento-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bento-footer__brand img {
  height: 32px;
  background: var(--white);
  padding: 3px 6px;
  border-radius: 2px;
}

.bento-footer__legal {
  font-size: 11px;
  color: #6E6E6E;
  letter-spacing: 0.05em;
}

.bento-footer__contact {
  display: flex;
  gap: 24px;
}

.bento-footer__contact a {
  font-size: 12px;
  color: #6E6E6E;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.bento-footer__contact a:hover {
  color: var(--red);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.25s; }
.reveal:nth-child(5) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .cell--portrait {
    grid-column: 1 / 4;
    grid-row: 1 / 4;
  }

  .cell--stat {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
  }

  .cell--tagline {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
  }

  .cell--communities {
    grid-column: 4 / 7;
    grid-row: 3 / 4;
  }

  .cell--cta {
    grid-column: 1 / 7;
    grid-row: 4 / 5;
  }

  .cell--about {
    grid-column: 1 / 7;
    grid-row: 5 / 6;
  }

  .bento-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-bar__cta { display: none; }
  .hamburger { display: flex; }

  .hero-name h1 {
    font-size: clamp(48px, 8vw, 90px);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile
   ═══════════════════════════════════════════ */
@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .cell--portrait {
    grid-column: 1;
    grid-row: auto;
    min-height: 400px;
  }

  .cell--stat {
    grid-column: 1;
    grid-row: auto;
  }

  .cell--tagline {
    grid-column: 1;
    grid-row: auto;
  }

  .cell--communities {
    grid-column: 1;
    grid-row: auto;
  }

  .cell--cta {
    grid-column: 1;
    grid-row: auto;
    min-height: 160px;
  }

  .cell--about {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .bento-footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .bento-footer__contact {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-name h1 {
    font-size: clamp(40px, 12vw, 64px);
  }
}

/* ═══════════════════════════════════════════
   MOBILE NAV OVERLAY
   ═══════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555555;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--red);
}

.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: #1A1A1A;
  background: none;
  border: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════════
   PORTRAIT DARK TREATMENT
   ═══════════════════════════════════════════ */
.cell--portrait {
  background: linear-gradient(180deg, var(--grey-dark) 0%, var(--black) 100%);
}

.cell--portrait img {
  mix-blend-mode: normal;
  object-position: center 10%;
}

/* SVG Logo adjustments removed — handled in shared header */



/* ── Portrait: aggressive dark edge blend ── */
.cell--portrait {
  background: var(--black) !important;
  position: relative;
}

.cell--portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

.cell--portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 20%, transparent 60%, rgba(0,0,0,0.85) 100%);
  z-index: 3;
  pointer-events: none;
}

.cell--portrait img {
  position: relative;
  z-index: 1;
  object-position: center 15%;
  filter: brightness(1.18) contrast(1.08) saturate(0.98);
}

/* Old mobile nav bar fixes removed — handled in shared header media queries */


/* Bryan v2 bento fixes (cleaned — no conflicting logo !important) */
.cell--portrait img { filter: brightness(1.55) contrast(1.04) saturate(1.02); object-position: center 12%; }
.cell--portrait::before, .cell--portrait::after { display: none; }
.cell--stat .stat-number, .bottom-cell .bc-number { display:block; line-height:.9; }
.cell--stat .stat-label { display:block; margin-top:10px; line-height:1.2; }
.bottom-cell { display:grid; align-content:start; justify-items:center; }
.bottom-cell .bc-number { display:block; line-height:.88; margin:0; }
.bottom-cell .bc-label { display:block; min-height:auto; margin-top:10px; line-height:1.2; max-width:12ch; }


/* Bryan v2 hard overrides consolidated above */



/* Old shared nav header removed — merged into shared header upgrade */

/* ═══════════════════════════════════════════════════════════
   PROPERTIES PAGE (bp- prefix)
   ═══════════════════════════════════════════════════════════ */
.bp-page {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 80px;
}
.bp-eyebrow {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #D91F3A 0%, #C81832 100%);
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.bp-btn:hover { transform: translateY(-2px); background: var(--red-hover); }
.bp-btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
}
.bp-btn--outline:hover { background: rgba(255,255,255,.06); }

/* Hero */
.bp-hero {
  border-radius: 28px;
  background: linear-gradient(155deg, #0d0f14 0%, #151820 60%, #0a0c10 100%);
  border: 1px solid rgba(255,255,255,.08);
  padding: clamp(32px, 5vw, 64px);
  margin-bottom: 32px;
}
.bp-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: end;
}
.bp-hero h1 {
  color: #1A1A1A;
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 72px);
}
.bp-hero p { color: #6E6E6E; font-size: 13.6px; line-height: 1.75; max-width: 580px; margin: 0; }
.bp-hero__panel {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 28px;
}
.bp-hero__panel strong { display: block; color: #1A1A1A; font-size: 32px; margin-bottom: 10px; }
.bp-hero__panel p { color: #6E6E6E; font-size: 18px; line-height: 1.75; margin: 0 0 22px; }

.bp-hero--immersive {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.bp-hero__media,
.bp-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.bp-hero__media img {
  object-fit: cover;
  transform: scale(1.02);
}
.bp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(8,8,10,.86) 0%, rgba(8,8,10,.55) 42%, rgba(8,8,10,.82) 100%);
}
.bp-hero__inner--buyers {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: end;
  width: 100%;
}
.bp-hero__copy { max-width: 760px; }
.bp-hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.bp-hero__highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  color: #1A1A1A;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.bp-story-band,
.bp-image-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 32px;
}
.bp-story-band--reverse { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
.bp-story-band__copy,
.bp-image-split__copy {
  background: linear-gradient(155deg, #0d0f14 0%, #151820 60%, #0a0c10 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: clamp(28px,4vw,52px);
}
.bp-story-band__copy h2,
.bp-image-split__copy h2 {
  color: #1A1A1A;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .96;
}
.bp-story-band__copy p,
.bp-image-split__copy > p,
.bp-section-head p,
.bp-bottom-cta p,
.bp-why-inner > div > p,
.bp-why-card p {
  color: #6E6E6E;
  font-size: 18px;
  line-height: 1.75;
}
.bp-story-band__image,
.bp-image-split__stack {
  position: relative;
}
.bp-story-band__image img,
.bp-image-split__stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  display: block;
}
.bp-story-band__image {
  min-height: 480px;
}
.bp-story-band__image img { min-height: 480px; }
.bp-process-section--editorial {
  margin-bottom: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 28px;
  padding: clamp(28px,4vw,46px);
}
.bp-section-head h2 { color: #1A1A1A; margin: 0 0 14px; font-size: clamp(34px, 4vw, 56px); line-height: .96; }
.bp-step-grid--editorial {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.bp-step-grid--editorial .bp-step {
  grid-column: span 4;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
}
.bp-step-grid--editorial .bp-step--featured {
  grid-column: span 6;
  background: linear-gradient(155deg, rgba(234,0,42,.16), rgba(255,255,255,.04));
  border-color: rgba(234,0,42,.22);
}
.bp-step h3 { font-size: 24px; margin: 0 0 14px; }
.bp-step__num {
  width: 46px;
  height: 46px;
  font-size: 12px;
  margin-bottom: 22px;
}
.bp-image-split__stack {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  min-height: 560px;
}
.bp-image-split__stack img:first-child {
  margin-top: 56px;
  min-height: 420px;
}
.bp-image-split__stack img:last-child {
  min-height: 560px;
}
.bp-why-cards--stacked {
  grid-template-columns: 1fr;
  margin-top: 24px;
}
.bp-why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 24px;
}
.bp-why-card strong {
  display: block;
  color: #1A1A1A;
  font-size: 20px;
  margin-bottom: 10px;
}
.bp-bottom-cta--feature {
  position: relative;
  overflow: hidden;
}
.bp-bottom-cta--feature::before {
  content: '';
  position: absolute;
  inset: auto -12% -45% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,0,42,.22), rgba(234,0,42,0));
  pointer-events: none;
}
.bp-bottom-cta--feature > * { position: relative; z-index: 1; }
@media (max-width: 1024px) {
  .bp-story-band,
  .bp-story-band--reverse,
  .bp-image-split,
  .bp-hero__inner--buyers,
  .bp-step-grid--editorial {
    grid-template-columns: 1fr;
  }
  .bp-step-grid--editorial .bp-step,
  .bp-step-grid--editorial .bp-step--featured {
    grid-column: auto;
  }
  .bp-image-split__stack {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }
  .bp-image-split__stack img:first-child,
  .bp-image-split__stack img:last-child,
  .bp-story-band__image,
  .bp-story-band__image img {
    min-height: 320px;
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .bp-hero--immersive {
    min-height: 0;
    padding-top: 120px;
  }
  .bp-hero__highlights span {
    font-size: 11px;
    letter-spacing: .08em;
  }
  .bp-story-band__copy h2,
  .bp-image-split__copy h2,
  .bp-section-head h2 {
    font-size: clamp(28px, 9vw, 42px);
  }
  .bp-image-split__stack {
    grid-template-columns: 1fr;
  }
}

/* Grid */
.bp-grid-section { margin-bottom: 32px; }
.bp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.bp-card {
  background: linear-gradient(180deg, #131618, #0e1013);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}
.bp-card:hover { border-color: rgba(234,0,42,.28); transform: translateY(-4px); }
.bp-card__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.bp-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.bp-card:hover .bp-card__img-wrap img { transform: scale(1.04); }
.bp-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #1A1A1A;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.bp-card__badge--lease { background: rgba(234,0,42,.2); border-color: rgba(234,0,42,.35); color: #ff9aaa; }
.bp-card__body { padding: 24px; }
.bp-card__type { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.bp-card h2 { color: #1A1A1A; font-family: var(--font-display); font-size: 26px; margin: 0 0 6px; }
.bp-card__city { color: #6E6E6E; font-size: 13px; margin-bottom: 16px; }
.bp-card__price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.bp-card__price-row strong { color: #1A1A1A; font-size: 26px; }
.bp-card__price-row span { color: #6E6E6E; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.bp-card__stats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.bp-card__stats span {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 8px 12px;
  color: #6E6E6E;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bp-card__link {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.bp-card__link:hover { opacity: .72; }

/* Bottom CTA */
.bp-bottom-cta {
  border-radius: 28px;
  background: linear-gradient(155deg, #0d0f14 0%, #151820 60%, #0a0c10 100%);
  border: 1px solid rgba(255,255,255,.08);
  padding: clamp(28px,4vw,52px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.bp-bottom-cta h2 { color: #FFFFFF; margin: 0 0 12px; }
.bp-bottom-cta p { color: #6E6E6E; max-width: 620px; margin: 0; }
.bp-bottom-cta__actions { display: flex; flex-direction: column; gap: 12px; }

/* ═══════════════════════════════════════════════════════════
   SINGLE LISTING PAGE
   ═══════════════════════════════════════════════════════════ */
.bp-listing-page { padding-top: 24px; }
.bp-listing-hero {
  position: relative;
  min-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-bottom: 28px;
}
.bp-listing-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bp-listing-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,10,.18) 0%, rgba(8,8,10,.3) 28%, rgba(8,8,10,.72) 100%);
}
.bp-listing-hero__content {
  position: relative;
  z-index: 2;
  padding: 36px;
  flex: 1;
}
.bp-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #1A1A1A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  margin-bottom: 18px;
}
.bp-badge--lease { background: rgba(234,0,42,.18); border-color: rgba(234,0,42,.3); color: #ffb3be; }
.bp-listing-hero__content h1 { color: #FFFFFF; font-size: clamp(38px, 5.5vw, 76px); margin: 0 0 8px; }
.bp-listing-hero__content > p { color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.75; margin: 0 0 20px; }
.bp-listing-stats { display: flex; flex-wrap: wrap; gap: 10px; }
.bp-listing-stats span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 10px 14px;
  color: #1A1A1A;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.bp-listing-hero__price-card {
  position: relative;
  z-index: 2;
  padding: 28px;
  background: rgba(8,8,10,.78);
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 260px;
  backdrop-filter: blur(16px);
}
.bp-listing-hero__price-card strong { color: #FFFFFF; font-size: clamp(38px, 5vw, 60px); line-height: .9; }

/* Listing detail */
.bp-listing-detail {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
  margin-bottom: 24px;
}
.bp-detail-panel {
  background: linear-gradient(180deg, #131618, #0e1013);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 32px;
}
.bp-detail-panel h2 { color: #1A1A1A; margin: 0 0 16px; }
.bp-detail-panel p { color: #6E6E6E; line-height: 1.8; margin: 0; }
.bp-detail-panel--accent { border-color: rgba(234,0,42,.2); }
.bp-highlights { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.bp-highlights li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: #6E6E6E;
  line-height: 1.6;
}
.bp-highlights li::before { content: "\2726"; color: var(--red); font-size: 14px; padding-top: 2px; }

/* Agent strip */
.bp-listing-agent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(155deg, #0d0f14, #151820);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 20px;
}
.bp-listing-agent__photo img {
  width: 120px;
  height: 140px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}
.bp-listing-agent h2 { color: #1A1A1A; margin: 0 0 12px; }
.bp-listing-agent > div > p { color: #6E6E6E; max-width: 560px; margin: 0 0 22px; }
.bp-action-row { display: flex; flex-wrap: wrap; gap: 12px; }
.bp-back-row { padding-top: 8px; }
.bp-back-row a { color: #6E6E6E; font-size: 13px; letter-spacing: .06em; }
.bp-back-row a:hover { color: #FFFFFF; }

/* Responsive */
@media (max-width: 1024px) {
  .bp-hero__inner, .bp-bottom-cta { grid-template-columns: 1fr; }
  .bp-bottom-cta__actions { flex-direction: row; }
}
@media (max-width: 900px) {
  .bp-grid { grid-template-columns: 1fr; }
  .bp-listing-hero { flex-direction: column; align-items: stretch; min-height: 440px; }
  .bp-listing-hero__price-card { min-width: unset; border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
  .bp-listing-detail { grid-template-columns: 1fr; }
  .bp-listing-agent { grid-template-columns: 1fr; }
  .bp-listing-agent__photo { display: none; }
}
@media (max-width: 640px) {
  .bp-page { width: calc(100% - 32px); padding-bottom: 52px; }
  .bp-hero, .bp-bottom-cta, .bp-detail-panel, .bp-listing-agent { padding: 24px; }
}

/* Interior page body bg */
body.wp-theme-aurora-theme:not(.home) {
  background: #FFF8F8;
}
/* Remove residual black space below bp-page content */
.bp-listing-page .bp-back-row {
  padding-bottom: 40px;
}
body:not(.home) .bento-page {
  display: none;
}

/* Remove whitespace tail on interior pages */
html, body { min-height: 0; }
.bp-listing-page .bp-back-row { margin-bottom: 0; padding-bottom: 24px; }


/* Buyers / Sellers pages */
.bp-process-section, .bp-why-section { margin-bottom: 32px; }
.bp-section-head { margin-bottom: 28px; }
.bp-section-head h2 { color: #1A1A1A; }
.bp-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.bp-step {
  background: linear-gradient(180deg, #131618, #0e1013);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 26px;
}
.bp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(234,0,42,.12);
  border: 1px solid rgba(234,0,42,.24);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.bp-step h3 { color: #FFFFFF; font-size: 18px; margin: 0 0 12px; text-transform: none; letter-spacing: 0; }
.bp-step p { color: rgba(255,255,255,.78); line-height: 1.75; font-size: 18px; margin: 0; }
.bp-why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
  background: linear-gradient(155deg, #0d0f14 0%, #151820 60%, #0a0c10 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: clamp(28px,4vw,52px);
}
.bp-why-inner h2 { color: #FFFFFF; margin: 0 0 14px; }
.bp-why-inner > div > p { color: rgba(255,255,255,.78); line-height: 1.75; margin: 0; }
.bp-why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.bp-why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 20px;
}
.bp-why-card strong { display: block; color: #FFFFFF; font-size: 15px; margin-bottom: 8px; }
.bp-why-card p { color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.7; margin: 0; }
@media (max-width: 1024px) {
  .bp-step-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-why-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .bp-step-grid { grid-template-columns: 1fr; }
  .bp-why-cards { grid-template-columns: 1fr; }
}

.bp-areas-grid, .bp-contact-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-bottom:32px;
}
.bp-area-card, .bp-contact-card, .bp-about-panel {
  background:linear-gradient(180deg,#131618,#0e1013);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:26px;
}
.bp-area-card h3, .bp-contact-card h3 { color:var(--white); margin:10px 0 12px; font-size:22px; text-transform:none; letter-spacing:0; }
.bp-area-card p, .bp-contact-card p { color:var(--white-dim); line-height:1.75; margin:0 0 14px; }
.bp-area-card ul { margin:0; padding-left:18px; color:var(--white); }
.bp-area-card li { margin:0 0 8px; }
.bp-about-hero__inner { grid-template-columns: 1.2fr .8fr; }
.bp-about-panel { display:flex; flex-direction:column; gap:16px; align-items:flex-start; }
.bp-about-panel img { width:100%; max-width:320px; aspect-ratio:4/5; object-fit:cover; border-radius:18px; border:1px solid rgba(255,255,255,.08); }
@media (max-width: 1024px) {
  .bp-areas-grid, .bp-contact-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bp-about-hero__inner { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .bp-areas-grid, .bp-contact-grid { grid-template-columns:1fr; }
}


/* Shared header upgrade */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px clamp(16px, 3vw, 40px);
  background: rgba(8,8,8,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  transition: transform .32s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.top-bar--scrolled {
  background: rgba(8,8,8,.96);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}
.top-bar--hidden {
  transform: translateY(calc(-100% - 8px));
}
body.nav-open .top-bar {
  transform: translateY(0);
}
.top-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}
.top-bar__brand { display:flex; align-items:center; gap:14px; min-width:0; }
.top-bar__logo img { height: 56px; padding: 4px 10px; }
.top-bar__name-lockup { display:flex; flex-direction:column; gap:2px; }
.top-bar__name { font-size: 14px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.top-bar__sub { font-size: 11px; color: #6E6E6E; letter-spacing: .12em; text-transform: uppercase; }
.top-bar__nav { display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap: 18px; }
.top-bar__nav a { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #555555; }
.top-bar__nav a:hover { color: #FFFFFF; }
.top-bar__actions { display:flex; align-items:center; gap: 12px; }
/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw); background:#0b0b0d; padding: 28px 22px; transform: translateX(100%); transition: .3s ease; z-index: 1200; display:flex; flex-direction:column; gap:14px; border-left:1px solid rgba(255,255,255,.08);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #FFFFFF; }
.mobile-nav__close { align-self:flex-end; background:none; border:none; color:var(--white); font-size:26px; cursor:pointer; }
.bp-page, .bp-listing-page { max-width: 1440px; margin: 0 auto; padding: clamp(28px, 4vw, 48px) clamp(16px, 3vw, 40px) 80px; }
/* First body.home header block removed — consolidated below */

/* Shared footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, #0a0a0a, #050505);
  padding: 42px clamp(16px, 3vw, 40px) 20px;
}
.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr 1fr;
  gap: 28px;
  align-items: start;
}
.site-footer__col h4 {
  color: #1A1A1A;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer__brand { display:flex; align-items:center; gap:16px; margin-bottom: 18px; }
.site-footer__brand img { height: 58px; background:#fff; padding:4px 8px; border-radius:2px; }
.site-footer__brand strong { display:block; font-size: 18px; letter-spacing: .06em; text-transform: uppercase; }
.site-footer__brand span { display:block; font-size: 12px; color: #6E6E6E; letter-spacing: .14em; text-transform: uppercase; margin-top: 4px; }
.site-footer__brokerage { color: #555555; line-height: 1.7; margin-bottom: 16px; max-width: 28ch; }
.site-footer__meta, .site-footer__navlist { display:flex; flex-direction:column; gap:10px; }
.site-footer__meta a, .site-footer__navlist a { color: #555555; font-size: 14px; line-height: 1.6; }
.site-footer__meta a:hover, .site-footer__navlist a:hover { color: #FFFFFF; }
.site-footer__bottom {
  max-width: 1440px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color: #6E6E6E;
  font-size: 12px;
  letter-spacing: .04em;
}
@media (max-width: 1024px) {
  .top-bar__inner { grid-template-columns: 1fr auto; }
  .top-bar__nav { display:none; }
  .hamburger { display:flex; }
  .site-footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .top-bar { padding: 14px 16px; }
  .top-bar__logo img { height: 46px; }
  .top-bar__name { font-size: 12px; }
  .top-bar__sub { font-size: 10px; }
  .top-bar__cta { display:none; }
}


.home-section { margin: 44px 0; }
.home-section--split {
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: stretch;
}
.home-split-copy, .home-split-card, .home-section--cta {
  background: #FFFFFF;
  border: 1px solid var(--grey-border); box-shadow: 0 18px 40px rgba(217,31,58,0.08);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
}
.section-kicker { display:inline-block; color: var(--red); font-size: 24px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.section-headline { margin-bottom: 20px; }
.section-headline h2, .home-split-copy h2, .home-section--cta h2 { font-size: clamp(30px,4vw,52px); line-height: 1; margin-bottom: 14px; }
.home-split-copy p, .home-section--cta p { color: #555555; max-width: 60ch; font-size: 18px; line-height: 1.75; }
.home-bullets { display:grid; gap: 16px; margin-top: 24px; }
.home-bullets div { display:grid; gap: 4px; }
.home-bullets strong { font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.home-bullets span, .mini-stat span { color: #6E6E6E; }
.home-split-card { display:grid; gap: 14px; align-content:center; }
.mini-stat { padding: 18px; border:1px solid rgba(255,255,255,.08); background:#0e0e0f; }
.mini-stat strong { display:block; margin-bottom: 6px; font-size: 18px; }
.areas-slider { position:relative; display:grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items:center; }
.areas-slider__track-wrap { overflow:hidden; }
.areas-slider__track { display:flex; gap:18px; transition: transform .45s ease; }
.area-slide { min-width: calc(50% - 9px); position:relative; border-radius: 4px; overflow:hidden; border:1px solid var(--grey-border); background:#111; }
.area-slide img { width:100%; height:420px; object-fit:cover; }
.area-slide__overlay { position:absolute; inset:auto 0 0 0; padding:24px; background:linear-gradient(180deg, transparent, rgba(0,0,0,.85)); }
.area-slide__overlay span { display:block; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.area-slide__overlay h3 { font-size: 28px; line-height: 1.05; max-width: 12ch; }
.areas-slider__btn { width:48px; height:48px; border:1px solid rgba(255,255,255,.12); background:#0d0d0f; color:#fff; font-size:28px; cursor:pointer; }
.home-section--process .process-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.process-card { background: #FFFFFF; border:1px solid var(--grey-border); padding: 26px; }
.process-card span { display:inline-flex; margin-bottom: 12px; color: var(--red); font-weight: 800; letter-spacing: .12em; }
.process-card h3 { font-size: 24px; margin-bottom: 10px; }
.process-card p { color: #6E6E6E; font-size: 18px; line-height: 1.75; }
.home-section--cta { display:grid; grid-template-columns: 1.2fr auto; gap: 20px; align-items:center; }
.home-section__actions { display:flex; gap: 12px; flex-wrap:wrap; }
.bento-footer { display:none; }
@media (max-width: 1024px) {
  .home-section--split, .home-section--cta { grid-template-columns:1fr; }
  .area-slide { min-width: 100%; }
  .home-section--process .process-grid { grid-template-columns:1fr; }
}

.home-section--split { display:none; }
.home-section--promise {
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items:center;
}
.promise-copy h2 {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: .95;
  max-width: 10ch;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.promise-copy p {
  color: #555555;
  max-width: 62ch;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.75;
}
.promise-card-shell {
  display:flex;
  align-items:center;
  justify-content:center;
}
.promise-card {
  width: 100%;
  background: linear-gradient(180deg, #15131a, #111115);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.promise-card > p {
  color: #555555;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 26px;
}
.promise-quote {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  padding: 28px;
}
.promise-quote strong {
  display:block;
  font-size: clamp(22px, 3vw, 34px);
  line-height: .95;
  text-transform: uppercase;
  max-width: 10ch;
  margin-bottom: 16px;
}
.promise-quote p {
  color: #555555;
  font-size: 18px;
  line-height: 1.75;
}
@media (max-width: 1024px) {
  .home-section--promise { grid-template-columns: 1fr; }
  .promise-copy h2 { max-width: 12ch; }
}

body.home .top-bar__logo img {
  height: 58px;
  width: auto;
  display: block;
  background:#fff;
  padding:4px 8px;
  border-radius:2px;
}
body.home .top-bar {
  display:block;
  padding: 24px 40px 12px;
}
body.home .top-bar__name-lockup { display:none; }
/* body.home .mobile-nav uses .open class for visibility */
body.home .top-bar__inner {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 28px;
}
body.home .top-bar__brand {
  justify-self: start;
  margin-left: 120px;
}
body.home .top-bar__nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 18px;
  padding-top: 12px;
  min-width: 0;
  flex-wrap: nowrap;
  overflow: visible;
}
body.home .top-bar__nav a {
  font-size: 13.6px !important;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: #555555;
  white-space: nowrap;
}
body.home .top-bar__nav a:hover { color: #FFFFFF; }
body.home .top-bar__actions {
  justify-self: end;
  margin-right: 180px;
  margin-top: 0;
}
body.home .top-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(135deg, #D91F3A 0%, #C81832 100%);
  color: #1A1A1A;
  border: none;
  box-shadow: 0 10px 24px rgba(196, 33, 39, 0.22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
body.home .top-bar__cta:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(196, 33, 39, 0.28);
}
/* name-lockup visibility handled in body.home block */
@media (max-width: 1180px) {
  body.home .top-bar__brand { margin-left: 36px; }
  body.home .top-bar__actions { margin-right: 60px; }
  body.home .top-bar__nav a { font-size: 12px !important; }
}
@media (max-width: 1024px) {
  body.home .top-bar {
    padding: 18px 16px 8px;
  }
  body.home .top-bar__brand {
    margin-left: 0;
  }
  body.home .top-bar__nav {
    display: none;
  }
  body.home .top-bar__actions {
    margin-right: 0;
  }
  body.home .top-bar__cta {
    display: none;
  }
  body.home .top-bar__logo img {
    height:48px;
    padding:4px 8px;
  }
}


/* Bryan V1 contrast hotfix — force light text on dark/red surfaces */
.bp-bottom-cta,
.bp-bottom-cta *,
.bp-listing-hero,
.bp-listing-hero *,
.top-bar--home,
.top-bar--home *,
.top-bar__cta,
.top-bar__cta *,
.mobile-nav,
.mobile-nav * {
  color: #FFFFFF !important;
}

.top-bar__nav a:hover,
.top-bar__cta:hover,
.site-footer__meta a:hover,
.site-footer__navlist a:hover,
body.home .top-bar__nav a:hover,
.bp-back-row a:hover {
  color: #FFFFFF !important;
}


/* Bryan V1 text correction + community tile contrast */
.cell--tagline blockquote,
.cell--tagline .tagline-attr,
.cell--communities h3,
.community-list li,
.community-list a,
.community-list li a,
.community-tile,
.community-tile *,
.community-card,
.community-card * {
  color: #FFFFFF !important;
}


/* Bryan V1 mobile contrast fix */
.cell--services,
.cell--services p,
.cell--services li,
.cell--services span,
.cell--services strong,
.cell--services .service-copy,
.cell--services .service-copy *,
.cell--communities,
.cell--communities h3,
.cell--communities p,
.cell--communities li,
.cell--communities a,
.cell--communities span,
.cell--communities strong,
.community-list li,
.community-list li a,
.community-slide__content,
.community-slide__content *,
.community-card__content,
.community-card__content *,
.community-overlay,
.community-overlay *,
.swiper-slide .community-listing,
.swiper-slide .community-listing *,
.swiper-slide .community-card,
.swiper-slide .community-card *,
.splide__slide .community-card,
.splide__slide .community-card * {
  color: #FFFFFF !important;
}

/* Bryan V1 exact dark card contrast fix */
.bp-step h3,
.bp-why-inner h2,
.bp-why-card strong { color:#FFFFFF !important; }
.bp-step p,
.bp-why-inner > div > p,
.bp-why-card p { color:rgba(255,255,255,.78) !important; }

.promise-quote strong,
.promise-quote p,
.area-slide__overlay span,
.area-slide__overlay h3 { color:#FFFFFF !important; }
