/* =========================================================
   THEME 06 — PREMIUM CORPORATE
   forbespropertynoida.in
   Aesthetic: Clean luxury corporate · bright white · warm gray · Forbes red
   Type: Libre Caslon Text (display) + IBM Plex Sans (body)
   ========================================================= */

:root {
  --br-bg:          #FFFFFF;
  --br-bg-alt:      #F7F5F3;
  --br-bg-dark:     #1A1A1A;
  --br-text:        #1A1A1A;
  --br-text-head:   #0D0D0D;
  --br-text-dim:    #5A5A5A;
  --br-text-mute:   #8A8A8A;
  --br-line:        #E5E2DE;
  --br-line-light:  #EDEBE8;
  --br-red:         #B71C1C;
  --br-red-dk:      #8B1515;
  --br-red-lt:      #D32F2F;
  --br-gold:        #C49B3C;
  --br-gold-lt:     #D4AF5A;
  --br-white:       #FFFFFF;

  --br-display: 'Libre Caslon Text', 'Playfair Display', Georgia, serif;
  --br-sans:    'IBM Plex Sans', -apple-system, sans-serif;
}

/* ========== GLOBAL RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

body.theme-brokerage {
  background: var(--br-bg);
  color: var(--br-text);
  font-family: var(--br-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.theme-brokerage h1,
body.theme-brokerage h2,
body.theme-brokerage h3,
body.theme-brokerage h4 {
  font-family: var(--br-display);
  color: var(--br-text-head);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

body.theme-brokerage .nav { display: none !important; }

/* ========== CONTAINERS ========== */
.br-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== SECTION SYSTEM ========== */
.br-section {
  padding: 5rem 0;
  position: relative;
}
.br-section-alt {
  background: var(--br-bg-alt);
}
.br-section-label {
  font-family: var(--br-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--br-red);
  margin-bottom: 1rem;
  display: block;
}
.br-section-title {
  font-family: var(--br-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--br-text-head);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 720px;
}
.br-section-text {
  font-family: var(--br-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--br-text-dim);
  max-width: 640px;
  margin-bottom: 2rem;
}

/* ========== BUTTONS ========== */
.br-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--br-red);
  color: var(--br-white);
  border: 2px solid var(--br-red);
  padding: 0.85rem 2rem;
  font-family: var(--br-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}
.br-btn:hover {
  background: var(--br-red-dk);
  border-color: var(--br-red-dk);
}
.br-btn-outline {
  background: transparent;
  color: var(--br-red);
  border: 2px solid var(--br-red);
}
.br-btn-outline:hover {
  background: var(--br-red);
  color: var(--br-white);
}

/* ========== CTA BAR ========== */
.br-cta-bar {
  text-align: center;
  padding: 2.5rem 2rem 0;
}

/* ========== NAVIGATION ========== */
.br-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--br-line);
  padding: 0;
  transition: box-shadow 0.3s;
}
.br-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}
.br-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.br-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.br-brand-mark {
  width: 40px; height: 40px;
  background: var(--br-red);
  color: var(--br-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--br-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.br-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.br-brand-text .brand-name {
  font-family: var(--br-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--br-text-head);
  letter-spacing: 0.04em;
}
.br-brand-text .brand-sub {
  font-family: var(--br-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--br-text-mute);
  text-transform: uppercase;
  margin-top: 2px;
}
.br-nav-links {
  display: flex;
  gap: 2rem;
  font-family: var(--br-sans);
  font-size: 0.85rem;
  font-weight: 500;
}
.br-nav-links a {
  color: var(--br-text-dim);
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.br-nav-links a:hover {
  color: var(--br-red);
}
.br-nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ========== HERO ========== */
.br-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.br-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.br-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.br-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}
.br-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  color: var(--br-white);
}
.br-hero-label {
  font-family: var(--br-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--br-gold-lt);
  margin-bottom: 1.5rem;
  display: block;
}
.br-hero-h1 {
  font-family: var(--br-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--br-white);
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.br-hero-h1 em {
  font-style: italic;
  color: var(--br-gold-lt);
}
.br-hero-sub {
  font-family: var(--br-sans);
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.br-hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.br-hero-ctas .br-btn {
  padding: 1rem 2.25rem;
  font-size: 0.9rem;
}
.br-hero-ctas .br-btn-outline {
  color: var(--br-white);
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}
.br-hero-ctas .br-btn-outline:hover {
  background: var(--br-white);
  color: var(--br-red);
  border-color: var(--br-white);
}
.br-hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.br-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.br-hero-stat strong {
  font-family: var(--br-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--br-white);
}
.br-hero-stat span {
  font-family: var(--br-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== OVERVIEW ========== */
.br-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.br-overview-img {
  overflow: hidden;
}
.br-overview-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.br-overview-content {
  padding: 1rem 0;
}
.br-key-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--br-line);
}
.br-key-fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.br-key-fact strong {
  font-family: var(--br-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--br-text-head);
}
.br-key-fact span {
  font-family: var(--br-sans);
  font-size: 0.8rem;
  color: var(--br-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== APARTMENTS ========== */
.br-apartments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.br-apt-card {
  background: var(--br-bg);
  border: 1px solid var(--br-line);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.br-apt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.br-apt-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--br-line);
}
.br-apt-body {
  padding: 1.75rem;
}
.br-apt-body .apt-tag {
  font-family: var(--br-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--br-red);
  margin-bottom: 0.5rem;
  display: block;
}
.br-apt-body h3 {
  font-family: var(--br-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--br-text-head);
}
.br-apt-body .apt-area {
  font-size: 0.9rem;
  color: var(--br-text-dim);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--br-line-light);
}
.br-apt-body .apt-price {
  font-family: var(--br-display);
  font-size: 1.25rem;
  color: var(--br-red);
  font-weight: 400;
  margin-bottom: 1rem;
}
.br-apt-features {
  list-style: none;
  padding: 0;
}
.br-apt-features li {
  font-size: 0.875rem;
  color: var(--br-text-dim);
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--br-line-light);
  display: flex;
  justify-content: space-between;
}
.br-apt-features li strong {
  color: var(--br-text);
  font-weight: 600;
}

/* ========== AMENITIES ========== */
.br-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.br-amenity-card {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.br-amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.br-amenity-card:hover img {
  transform: scale(1.05);
}
.br-amenity-info {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--br-white);
}
.br-amenity-info h3 {
  font-family: var(--br-display);
  font-size: 1.25rem;
  color: var(--br-white);
  margin-bottom: 0.25rem;
}
.br-amenity-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.br-amenity-zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.br-amenity-zone h4 {
  font-family: var(--br-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--br-red);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--br-red);
}
.br-amenity-zone ul {
  list-style: none;
  padding: 0;
}
.br-amenity-zone ul li {
  font-size: 0.85rem;
  color: var(--br-text-dim);
  padding: 0.35rem 0;
  border-bottom: 1px dotted var(--br-line-light);
}

/* ========== AQI ========== */
.br-aqi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.br-aqi-content {
  padding: 1rem 0;
}
.br-aqi-img {
  overflow: hidden;
}
.br-aqi-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.br-aqi-features {
  margin-top: 2rem;
}
.br-aqi-group {
  margin-bottom: 2rem;
}
.br-aqi-group h4 {
  font-family: var(--br-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--br-text-head);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--br-gold);
}
.br-aqi-group ul {
  list-style: none;
  padding: 0;
}
.br-aqi-group ul li {
  font-size: 0.9rem;
  color: var(--br-text-dim);
  padding: 0.45rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.br-aqi-group ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--br-gold);
}

/* ========== TRUST ========== */
.br-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.br-trust-content {
  padding: 1rem 0;
}
.br-trust-img {
  overflow: hidden;
}
.br-trust-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.br-trust-points {
  margin-top: 2rem;
}
.br-trust-point {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--br-line);
}
.br-trust-point:first-child {
  border-top: 1px solid var(--br-line);
}
.br-trust-point h4 {
  font-family: var(--br-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--br-text-head);
  margin-bottom: 0.35rem;
}
.br-trust-point p {
  font-size: 0.9rem;
  color: var(--br-text-dim);
  line-height: 1.6;
}
.br-trust-quote {
  font-family: var(--br-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--br-red);
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--br-gold);
  line-height: 1.6;
}

/* ========== MASTERPLAN ========== */
.br-masterplan {
  text-align: center;
}
.br-masterplan-img {
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--br-line);
}
.br-masterplan-img img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  background: var(--br-bg-alt);
  padding: 1rem;
}
.br-masterplan-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}
.br-masterplan-feat {
  padding: 1.25rem;
  border-top: 2px solid var(--br-red);
  background: var(--br-bg);
}
.br-masterplan-feat strong {
  display: block;
  font-family: var(--br-display);
  font-size: 1.5rem;
  color: var(--br-text-head);
  margin-bottom: 0.25rem;
}
.br-masterplan-feat span {
  font-size: 0.85rem;
  color: var(--br-text-dim);
}

/* ========== CONNECTIVITY ========== */
.br-connectivity {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.br-connectivity-content {
  padding: 1rem 0;
}
.br-connectivity-img {
  overflow: hidden;
}
.br-connectivity-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.br-distance-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.br-distance-table th {
  font-family: var(--br-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--br-text-mute);
  text-align: left;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--br-red);
}
.br-distance-table td {
  font-size: 0.9rem;
  color: var(--br-text);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--br-line-light);
}
.br-distance-table td:last-child {
  font-weight: 600;
  color: var(--br-text-head);
  text-align: right;
}

/* ========== MEDIA ========== */
.br-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.br-media-card {
  background: var(--br-bg);
  border: 1px solid var(--br-line);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.br-media-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.br-media-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--br-line);
}
.br-media-body {
  padding: 1.5rem;
}
.br-media-body .media-source {
  font-family: var(--br-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--br-red);
  margin-bottom: 0.5rem;
  display: block;
}
.br-media-body h3 {
  font-family: var(--br-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--br-text-head);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.br-media-body .media-date {
  font-size: 0.8rem;
  color: var(--br-text-mute);
}

/* ========== CONTACT ========== */
.br-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.br-contact-info {
  padding: 1rem 0;
}
.br-contact-details {
  margin-top: 2rem;
}
.br-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 0;
  border-top: 1px solid var(--br-line);
}
.br-contact-detail:last-child {
  border-bottom: 1px solid var(--br-line);
}
.br-contact-detail span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--br-text-mute);
}
.br-contact-detail strong {
  font-size: 1rem;
  color: var(--br-text-head);
}
.br-form {
  background: var(--br-bg-alt);
  border: 1px solid var(--br-line);
  padding: 2.5rem;
}
.br-form-title {
  font-family: var(--br-display);
  font-size: 1.25rem;
  color: var(--br-text-head);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--br-line);
}
.br-form label {
  display: block;
  font-family: var(--br-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--br-text-mute);
  margin-bottom: 0.35rem;
}
.br-form input,
.br-form select,
.br-form textarea {
  width: 100%;
  background: var(--br-bg);
  border: 1px solid var(--br-line);
  padding: 0.85rem 1rem;
  font-family: var(--br-sans);
  font-size: 0.9rem;
  color: var(--br-text);
  margin-bottom: 1.25rem;
  outline: none;
  transition: border-color 0.3s;
}
.br-form input:focus,
.br-form select:focus,
.br-form textarea:focus {
  border-color: var(--br-red);
}
.br-form textarea {
  resize: vertical;
}
.br-form button {
  width: 100%;
  background: var(--br-red);
  color: var(--br-white);
  border: 2px solid var(--br-red);
  padding: 1rem;
  font-family: var(--br-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s;
}
.br-form button:hover {
  background: var(--br-red-dk);
  border-color: var(--br-red-dk);
}
.br-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ========== FOOTER ========== */
.br-footer {
  background: var(--br-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}
.br-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.br-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.br-footer-brand-name {
  font-family: var(--br-display);
  font-size: 1.35rem;
  color: var(--br-white);
  margin-bottom: 0.75rem;
}
.br-footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 380px;
}
.br-footer h4 {
  font-family: var(--br-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--br-gold);
  margin-bottom: 1rem;
}
.br-footer ul {
  list-style: none;
  padding: 0;
}
.br-footer ul li {
  padding: 0.35rem 0;
}
.br-footer ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.br-footer ul a:hover {
  color: var(--br-white);
}
.br-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ========== GALLERY ROW (Lobby / Gardens) ========== */
.br-gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.br-gallery-item {
  position: relative;
  overflow: hidden;
  height: 380px;
}
.br-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.br-gallery-item:hover img {
  transform: scale(1.03);
}
.br-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--br-white);
}
.br-gallery-caption h3 {
  font-family: var(--br-display);
  font-size: 1.2rem;
  color: var(--br-white);
  margin-bottom: 0.2rem;
}
.br-gallery-caption p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* ========== DISCLAIMER ========== */
.br-disclaimer {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 1.5rem 2rem;
  background: var(--br-bg-alt);
  border: 1px solid var(--br-line);
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--br-text-mute);
}
.br-disclaimer strong {
  color: var(--br-red);
  font-weight: 600;
  display: inline;
  margin-right: 0.35rem;
}

/* ===================================================================
   ABOUT / RESEARCH PAGES — Brokerage theme (retained for subpages)
   =================================================================== */
.theme-brokerage .br-about-title,
.theme-brokerage .br-research-title {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  border-bottom: 1px solid var(--br-line);
}
.theme-brokerage .br-about-h1 {
  font-family: var(--br-display);
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--br-text-head);
  margin: 1.5rem 0 2rem;
  max-width: 1000px;
}
.theme-brokerage .br-about-h1 em {
  font-style: italic;
  color: var(--br-red);
}
.theme-brokerage .br-about-dek {
  font-family: var(--br-display);
  font-size: 1.375rem;
  line-height: 1.55;
  color: var(--br-text-dim);
  max-width: 820px;
  font-weight: 400;
}
.theme-brokerage .br-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--br-line);
  border-top: 1px solid var(--br-line);
  border-bottom: 1px solid var(--br-line);
}
.theme-brokerage .br-strip-item {
  background: var(--br-bg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.theme-brokerage .br-strip-item span {
  font-family: var(--br-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--br-text-mute);
}
.theme-brokerage .br-strip-item strong {
  font-family: var(--br-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--br-text-head);
  letter-spacing: -0.01em;
}
.theme-brokerage .br-about-col {
  max-width: 820px;
}
.theme-brokerage .br-about-h3 {
  font-family: var(--br-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--br-text-head);
  margin: 2.25rem 0 1rem;
  letter-spacing: -0.01em;
}
.theme-brokerage .br-about-body {
  font-family: var(--br-sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--br-text-dim);
  margin: 0 0 1.25rem;
}
.theme-brokerage .br-about-body a {
  color: var(--br-red);
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 28, 28, 0.3);
}
.theme-brokerage .br-about-body a:hover {
  border-bottom-color: var(--br-red);
}
.theme-brokerage .br-about-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.theme-brokerage .br-about-team-card {
  padding: 1.75rem;
  border: 1px solid var(--br-line);
  background: var(--br-bg);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.theme-brokerage .br-section-alt .br-about-team-card {
  background: var(--br-bg);
}
.theme-brokerage .br-team-tag {
  font-family: var(--br-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--br-red);
  font-weight: 600;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--br-line);
  margin-bottom: 0.25rem;
}
.theme-brokerage .br-about-team-card strong {
  font-family: var(--br-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--br-text-head);
}
.theme-brokerage .br-about-team-card p {
  font-family: var(--br-sans);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--br-text-dim);
  margin: 0.35rem 0 0;
}
.theme-brokerage .br-about-team-card em {
  font-family: var(--br-sans);
  font-size: 0.6875rem;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--br-text-mute);
  margin-top: 0.35rem;
}

/* ===================================================================
   RESEARCH LIST (blog) — Brokerage theme
   =================================================================== */
.theme-brokerage .br-research-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}
.theme-brokerage .br-research-row {
  display: grid;
  grid-template-columns: 140px 1fr 220px;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--br-line);
  align-items: start;
}
.theme-brokerage .br-research-row:last-child {
  border-bottom: 1px solid var(--br-line);
}
.theme-brokerage .br-research-ticker {
  font-family: var(--br-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--br-red);
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--br-red);
  background: rgba(183, 28, 28, 0.06);
  justify-self: start;
}
.theme-brokerage .br-research-tag {
  font-family: var(--br-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--br-text-mute);
}
.theme-brokerage .br-research-body h2 {
  font-family: var(--br-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--br-text-head);
  margin: 0.6rem 0 0.75rem;
}
.theme-brokerage .br-research-body h2 a {
  color: inherit;
  text-decoration: none;
}
.theme-brokerage .br-research-body h2 a:hover {
  color: var(--br-red);
}
.theme-brokerage .br-research-body p {
  font-family: var(--br-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--br-text-dim);
  margin: 0;
  max-width: 640px;
}
.theme-brokerage .br-research-stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--br-bg-alt);
  border: 1px solid var(--br-line);
}
.theme-brokerage .br-research-stats div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}
.theme-brokerage .br-research-stats span {
  font-family: var(--br-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--br-text-mute);
}
.theme-brokerage .br-research-stats strong {
  font-family: var(--br-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--br-text-head);
}

/* ===================================================================
   RESPONSIVE — 1024px
   =================================================================== */
@media (max-width: 1024px) {
  .br-nav-links { display: none; }
  .br-hero-content { padding: 7rem 2rem 3rem; }
  .br-hero-h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
  .br-hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .br-overview { grid-template-columns: 1fr; gap: 2rem; }
  .br-overview-img img { height: 360px; }
  .br-apartments { grid-template-columns: 1fr; }
  .br-amenities-grid { grid-template-columns: 1fr; }
  .br-amenity-zones { grid-template-columns: 1fr 1fr; }
  .br-aqi { grid-template-columns: 1fr; gap: 2rem; }
  .br-trust { grid-template-columns: 1fr; gap: 2rem; }
  .br-trust-img { order: -1; }
  .br-trust-img img { height: 300px; }
  .br-masterplan-features { grid-template-columns: 1fr 1fr; }
  .br-connectivity { grid-template-columns: 1fr; gap: 2rem; }
  .br-media-grid { grid-template-columns: 1fr; }
  .br-contact { grid-template-columns: 1fr; gap: 2rem; }
  .br-gallery-row { grid-template-columns: 1fr; }
  .br-footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .theme-brokerage .br-strip { grid-template-columns: repeat(3, 1fr); }
  .theme-brokerage .br-about-team { grid-template-columns: 1fr 1fr; }
  .theme-brokerage .br-research-row { grid-template-columns: 110px 1fr; }
  .theme-brokerage .br-research-stats { grid-column: 1 / 3; flex-direction: row; }
}

/* ===================================================================
   RESPONSIVE — 640px
   =================================================================== */
@media (max-width: 640px) {
  .br-section { padding: 3rem 0; }
  .br-container { padding: 0 1.25rem; }
  .br-nav-inner { padding: 0 1.25rem; height: 60px; }
  .br-nav-cta .br-btn { padding: 0.6rem 1rem; font-size: 0.8rem; }
  .br-hero-content { padding: 5.5rem 1.25rem 2rem; }
  .br-hero-h1 { font-size: 2rem; }
  .br-hero-sub { font-size: 1rem; }
  .br-hero-ctas { flex-direction: column; }
  .br-hero-stats { flex-direction: column; gap: 1rem; }
  .br-key-facts { grid-template-columns: 1fr; }
  .br-amenity-zones { grid-template-columns: 1fr; }
  .br-masterplan-features { grid-template-columns: 1fr; }
  .br-gallery-item { height: 260px; }
  .br-form-row { grid-template-columns: 1fr; gap: 0; }
  .br-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .theme-brokerage .br-strip { grid-template-columns: 1fr 1fr; }
  .theme-brokerage .br-about-team { grid-template-columns: 1fr; }
  .theme-brokerage .br-research-row { grid-template-columns: 1fr; gap: 1rem; }
  .theme-brokerage .br-research-stats { grid-column: 1; flex-direction: column; }
  .theme-brokerage .br-about-title,
  .theme-brokerage .br-research-title { padding: 3rem 1.25rem 2.5rem; }
}
