/* ==========================================================
   ROOFLINE PROPERTIES — Main Stylesheet
   ========================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0B2C4A;
  --navy2:  #0e3657;
  --gold:   #C9AC51;
  --gold2:  #b89940;
  --neutral:#F2F2F0;
  --white:  #FFFFFF;
  --text:   #1a1a1a;
  --muted:  #6b6b68;
  --border: #d8d8d4;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Montserrat', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--neutral); color: var(--text); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img  { display: block; max-width: 100%; height: auto; }

/* ── CUSTOM LOGO ─────────────────────────── */
.custom-logo { height: 36px; width: auto; object-fit: contain; }

/* ── NAV ─────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 24px rgba(11,44,74,.08); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2.5rem;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo-text { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--navy); letter-spacing: .01em; }
.nav-logo-text span { font-weight: 400; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--navy); }
.nav-phone { font-size: .78rem; font-weight: 600; color: var(--navy); letter-spacing: .04em; text-decoration: none; }
.nav-cta { font-size: .72rem !important; font-weight: 600 !important; letter-spacing: .1em !important; color: var(--white) !important; background: var(--navy); padding: .6rem 1.4rem; text-decoration: none; transition: background .2s; }
.nav-cta:hover { background: var(--navy2) !important; }

/* Mobile nav toggle */
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: .25rem; flex-direction: column; gap: 5px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: transform .3s, opacity .3s; }
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu { background: var(--white); border-top: 1px solid var(--border); padding: 1.5rem 2.5rem 2rem; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu a { font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); text-decoration: none; }

/* ── HERO ────────────────────────────────── */
.hero { min-height: 100vh; padding-top: 67px; display: grid; grid-template-columns: 1fr 1fr; }
.hero-left { background: var(--navy); display: flex; flex-direction: column; justify-content: center; padding: 6rem 4rem 6rem 3rem; position: relative; overflow: hidden; }
.hero-left::after { content: ''; position: absolute; bottom: 0; right: 0; width: 60%; height: 2px; background: var(--gold); }
.hero-eyebrow { font-size: .65rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.75rem; }
.hero-title { font-family: var(--serif); font-size: clamp(2.75rem,4vw,4.25rem); font-weight: 400; line-height: 1.1; color: var(--white); margin-bottom: 1.75rem; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-body { font-size: .9rem; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.6); max-width: 380px; margin-bottom: 2.75rem; }
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-right { background: var(--navy2); display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem; position: relative;
  background-image: linear-gradient(to bottom,rgba(11,44,74,.1) 0%,rgba(11,44,74,.7) 100%), repeating-linear-gradient(0deg,transparent,transparent 79px,rgba(255,255,255,.04) 80px), repeating-linear-gradient(90deg,transparent,transparent 79px,rgba(255,255,255,.04) 80px); }
.hero-arch { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: .22; }
.hero-arch svg { width: 90%; height: 90%; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.1); position: relative; z-index: 2; }
.hero-stat { background: rgba(11,44,74,.85); padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: .3rem; }
.hero-stat-label { font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.hero-stat-value { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; color: var(--white); line-height: 1; }
.hero-stat-sub { font-size: .72rem; font-weight: 300; color: rgba(255,255,255,.45); }

/* ── BUTTONS ─────────────────────────────── */
.btn-gold { display: inline-block; font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: .9rem 2rem; text-decoration: none; transition: background .2s; border: none; cursor: pointer; }
.btn-gold:hover { background: var(--gold2); color: var(--navy); }
.btn-gold-lg { display: inline-block; font-family: var(--sans); font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); background: var(--gold); padding: 1rem 2.25rem; text-decoration: none; margin-top: 2.5rem; transition: background .2s; }
.btn-gold-lg:hover { background: var(--gold2); color: var(--navy); }
.btn-navy { display: inline-block; font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--white); background: var(--navy); padding: .9rem 2rem; text-decoration: none; transition: background .2s; border: none; cursor: pointer; }
.btn-navy:hover { background: var(--navy2); }
.btn-outline { display: inline-block; font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); border: 1px solid var(--border); padding: .9rem 1.75rem; text-decoration: none; transition: border-color .2s; }
.btn-outline:hover { border-color: var(--navy); }
.btn-outline-white { display: inline-block; font-family: var(--sans); font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.25); padding: .9rem 1.75rem; text-decoration: none; transition: border-color .2s, color .2s; }
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

/* ── SECTION HELPERS ─────────────────────── */
.section-wrap { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }
.eyebrow { font-size: .62rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .9rem; }
.section-title { font-family: var(--serif); font-size: clamp(1.9rem,3vw,2.75rem); font-weight: 400; line-height: 1.15; color: var(--navy); }
.section-title em { font-style: italic; }
.gold-rule { width: 2.5rem; height: 2px; background: var(--gold); margin: 1.25rem 0 1.5rem; }
.section-desc { font-size: .9rem; font-weight: 300; line-height: 1.85; color: var(--muted); max-width: 500px; }

/* ── FEATURED PROPERTY ───────────────────── */
#featured { padding: 7rem 0; background: var(--white); }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.feat-img-main { aspect-ratio: 4/3; background: linear-gradient(135deg,var(--navy) 0%,var(--navy2) 60%,#1a4a6e 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.feat-img-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feat-img-main svg { opacity: .18; width: 80%; height: 80%; position: relative; z-index: 1; }
.feat-ribbon { position: absolute; top: 0; left: 0; background: var(--gold); color: var(--navy); font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: .5rem 1.1rem; z-index: 2; }
.feat-grid-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin: 2.5rem 0; }
.feat-detail { background: var(--white); padding: 1rem 1.25rem; }
.feat-detail-label { font-size: .58rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.feat-detail-value { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--navy); }

/* ── LISTINGS ────────────────────────────── */
#listings { padding: 7rem 0; background: var(--neutral); }
.listings-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.listings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.listing-card { background: var(--white); display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .25s, box-shadow .25s; }
.listing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(11,44,74,.1); }
.listing-photo { aspect-ratio: 16/10; position: relative; overflow: hidden; background: linear-gradient(135deg,var(--navy) 0%,#1a4a6e 100%); display: flex; align-items: center; justify-content: center; }
.listing-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.listing-photo-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.listing-photo-placeholder svg { opacity: .15; width: 75%; height: 75%; }
.listing-badge { position: absolute; top: 1rem; left: 1rem; font-size: .57rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .35rem .8rem; z-index: 2; }
.badge-active { background: var(--gold); color: var(--navy); }
.badge-soon   { background: var(--navy); color: var(--white); }
.badge-leased { background: #888; color: var(--white); }
.listing-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.listing-loc  { font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .4rem; }
.listing-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--navy); line-height: 1.25; margin-bottom: .6rem; }
.listing-desc { font-size: .82rem; font-weight: 300; color: var(--muted); line-height: 1.7; flex: 1; }
.listing-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1.1rem; margin-top: 1.1rem; border-top: 1px solid var(--neutral); }
.listing-specs { display: flex; gap: 1.25rem; }
.listing-spec  { display: flex; flex-direction: column; gap: .15rem; }
.spec-label    { font-size: .55rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.spec-value    { font-family: var(--serif); font-size: .95rem; font-weight: 500; color: var(--text); }
.listing-price { text-align: right; }
.price-label   { font-size: .55rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.price-value   { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); }
.listings-empty { padding: 4rem 0; text-align: center; font-size: .9rem; color: var(--muted); }
.listings-empty a { color: var(--navy); }

/* ── LANDLORD ────────────────────────────── */
#landlord { padding: 7rem 0; background: var(--navy); }
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.partner-features { display: flex; flex-direction: column; gap: 1px; }
.pf { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.5rem; background: rgba(255,255,255,.04); border-left: 2px solid transparent; transition: background .2s, border-color .2s; }
.pf:hover { background: rgba(255,255,255,.08); border-color: var(--gold); }
.pf-num   { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--gold); opacity: .5; flex-shrink: 0; line-height: 1; }
.pf-title { font-size: .85rem; font-weight: 600; color: var(--white); margin-bottom: .35rem; letter-spacing: .02em; }
.pf-desc  { font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── CONTACT ─────────────────────────────── */
#contact { padding: 7rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info-block { margin-bottom: 2.25rem; }
.contact-info-block h3 { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--navy); margin-bottom: .35rem; }
.contact-info-block p, .contact-info-block a { font-size: .88rem; font-weight: 300; color: var(--muted); line-height: 1.75; text-decoration: none; }
.contact-info-block a:hover { color: var(--navy); }
.contact-rule { width: 100%; height: 1px; background: var(--neutral); margin: 1.75rem 0; }
.contact-success { background: var(--neutral); padding: 2rem; border-left: 3px solid var(--gold); }
.contact-success p { font-size: .9rem; font-weight: 400; color: var(--navy); }

/* ── FORMS ───────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea { font-family: var(--sans); font-size: .875rem; font-weight: 300; color: var(--text); background: var(--neutral); border: 1px solid var(--border); padding: .75rem 1rem; outline: none; appearance: none; -webkit-appearance: none; transition: border-color .2s; width: 100%; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b6b68'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-group textarea { resize: none; min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { margin-top: .5rem; }

/* ── SINGLE LISTING ──────────────────────── */
.sl-back { display: inline-block; font-size: .72rem; font-weight: 500; letter-spacing: .08em; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; margin-bottom: 1.5rem; }
.sl-back:hover { color: var(--gold); }
.sl-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.1); }
.sl-content { font-size: .95rem; font-weight: 300; line-height: 1.85; color: var(--muted); margin-top: 1.5rem; }
.sl-content p { margin-bottom: 1rem; }
.sl-content h2, .sl-content h3 { font-family: var(--serif); color: var(--navy); margin-bottom: .75rem; margin-top: 1.5rem; }

/* ── FOOTER ──────────────────────────────── */
footer { background: var(--navy); padding: 2.5rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: rgba(255,255,255,.8); }
.footer-logo span { color: rgba(255,255,255,.35); font-weight: 300; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: .65rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.8); }
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.25); }

/* ── SCROLL REVEAL ───────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.hero-eyebrow { animation: fadeUp .6s ease both .1s; }
.hero-title   { animation: fadeUp .6s ease both .2s; }
.hero-body    { animation: fadeUp .6s ease both .32s; }
.hero-actions { animation: fadeUp .6s ease both .44s; }
.hero-stats   { animation: fadeUp .6s ease both .55s; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.vis { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .listings-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 4rem 1.5rem; }
  .hero-right { min-height: 280px; }
  .nav-inner { padding: .9rem 1.25rem; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .section-wrap { padding: 0 1.25rem; }
  #featured, #listings, #landlord, #contact { padding: 4.5rem 0; }
  .feat-grid, .partner-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .listings-grid { grid-template-columns: 1fr; }
  .listings-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.25rem; text-align: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .sl-hero-grid, .sl-body-grid { grid-template-columns: 1fr !important; }
  .sl-specs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: .75rem; align-items: center; }
}

/* ==========================================================
   BUILDING PAGE TEMPLATE
   ========================================================== */

/* ── Hero ────────────────────────────────── */
.building-hero {
  min-height: 85vh;
  padding-top: 67px;
  background: var(--navy);
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
  position: relative;
}
.building-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,44,74,.95) 0%, rgba(11,44,74,.5) 50%, rgba(11,44,74,.2) 100%);
}
.building-hero-inner {
  position: relative; z-index: 2;
  padding-bottom: 4rem; padding-top: 3rem;
  width: 100%;
}
.building-hero-content { max-width: 680px; margin-bottom: 3rem; }
.building-hero-title { font-family: var(--serif); font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 400; color: var(--white); line-height: 1.05; margin: 1rem 0 1.25rem; }
.building-hero-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 2rem; }
.building-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.building-hero-stats { display: flex; gap: 1px; background: rgba(255,255,255,.12); flex-wrap: wrap; }
.building-stat { background: rgba(11,44,74,.75); backdrop-filter: blur(6px); padding: 1.25rem 2rem; display: flex; flex-direction: column; gap: .25rem; }
.building-stat-label { font-size: .58rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.building-stat-value { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; color: var(--white); line-height: 1; }

/* ── Overview ────────────────────────────── */
.building-overview { padding: 7rem 0; background: var(--white); }
.building-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.building-desc { font-size: .92rem; font-weight: 300; line-height: 1.9; color: var(--muted); margin-top: 1.5rem; }
.building-desc p { margin-bottom: 1rem; }
.building-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-bottom: 2rem; }
.building-spec-row { background: var(--white); padding: .9rem 1rem; display: flex; flex-direction: column; gap: .2rem; }
.building-spec-label { font-size: .58rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.building-spec-value { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--navy); }
.building-address-block { padding-top: 1.5rem; border-top: 1px solid var(--neutral); }
.building-address { font-size: .9rem; font-weight: 300; color: var(--text); margin-top: .25rem; line-height: 1.6; }

/* ── Suite Styles ────────────────────────── */
.building-suites { padding: 7rem 0; background: var(--neutral); }
.suites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.suite-card { background: var(--white); display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.suite-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(11,44,74,.1); }
.suite-card-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--navy); position: relative; display: flex; align-items: center; justify-content: center; }
.suite-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.suite-card-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.suite-card-placeholder svg { width: 85%; height: 85%; }
.suite-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--navy); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .35rem .8rem; }
.suite-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.suite-card-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--navy); margin-bottom: .5rem; line-height: 1.2; }
.suite-card-desc { font-size: .82rem; font-weight: 300; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.suite-card-specs { display: flex; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--neutral); border-bottom: 1px solid var(--neutral); margin-bottom: 1.25rem; }
.suite-spec { display: flex; flex-direction: column; gap: .15rem; }
.suite-spec-label { font-size: .55rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.suite-spec-value { font-family: var(--serif); font-size: .95rem; font-weight: 500; color: var(--text); }
.suite-card-foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; margin-top: auto; }
.suite-price { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--navy); }
.suite-card-actions { display: flex; gap: .5rem; flex-wrap: wrap; }

/* ── Amenities ───────────────────────────── */
.building-amenities { padding: 7rem 0; background: var(--navy); }
.amenities-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.amenities-inner .section-title { color: var(--white); }
.amenities-inner .section-desc  { color: rgba(255,255,255,.55); }
.amenities-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; padding: .5rem 0; }
.amenity-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .85rem; font-weight: 400; color: rgba(255,255,255,.75); line-height: 1.5; }
.amenity-check { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); margin-top: 1px; }

/* ── Gallery ─────────────────────────────── */
.building-gallery { padding: 7rem 0; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 6px; }
.gallery-item { overflow: hidden; position: relative; display: block; background: var(--navy); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--wide { grid-column: span 2; grid-row: span 2; }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(11,44,74,.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── Book a Showing ──────────────────────── */
.building-showing { padding: 7rem 0; background: var(--neutral); }
.showing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.showing-note { display: flex; align-items: flex-start; gap: .75rem; background: rgba(201,172,81,.12); border-left: 2px solid var(--gold); padding: 1rem 1.25rem; margin-top: 2rem; font-size: .85rem; font-weight: 400; color: var(--text); line-height: 1.65; }
.showing-note svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.showing-form-wrap { background: var(--white); padding: 2.5rem; }

/* ── Breadcrumbs ─────────────────────────── */
.breadcrumbs { margin-bottom: 1.5rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; align-items: center; gap: .25rem; }
.breadcrumbs li { font-size: .68rem; font-weight: 500; letter-spacing: .08em; color: rgba(255,255,255,.45); }
.breadcrumbs li a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.breadcrumbs li a:hover { color: var(--gold); }
.breadcrumbs li span { color: rgba(255,255,255,.35); }
.bc-sep { color: rgba(255,255,255,.25); }

/* ── Inner page breadcrumbs (non-dark bg) ── */
.inner-breadcrumbs .breadcrumbs li,
.inner-breadcrumbs .bc-sep { color: var(--muted); }
.inner-breadcrumbs .breadcrumbs li a { color: var(--navy); }
.inner-breadcrumbs .breadcrumbs li a:hover { color: var(--gold); }
.inner-breadcrumbs .breadcrumbs li span { color: var(--muted); }

/* ==========================================================
   SEO: additional markup helpers
   ========================================================== */

/* Leased badge (listings grid) */
.badge-leased { background: #888; color: var(--white); }

/* Building responsive */
@media (max-width: 1024px) {
  .suites-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .building-overview-grid,
  .amenities-inner,
  .showing-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .suites-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item--wide { grid-column: 1 / -1; }
  .building-hero-stats { flex-direction: row; flex-wrap: wrap; }
  .building-stat { flex: 1 1 calc(50% - 1px); }
  .amenities-grid { grid-template-columns: 1fr; }
  .showing-form-wrap { padding: 1.5rem; }
  .suite-card-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: 1; grid-row: span 1; }
  .building-stat { flex: 1 1 100%; }
}

/* ==========================================================
   SINGLE LISTING — REBUILT
   ========================================================== */

/* ── Hero ────────────────────────────────── */
.sl-hero {
  background: var(--navy);
  padding-top: 67px;
}
.sl-hero-inner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.sl-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
}
.sl-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin: .75rem 0 1rem;
}
.sl-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 2rem;
}
.sl-price-unit {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  margin-left: .4rem;
}
.sl-hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.sl-hero-specs {
  min-width: 280px;
}
.sl-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.12);
}

/* ── Section common ──────────────────────── */
.sl-section {
  padding: 5.5rem 0;
}
.sl-section-head {
  margin-bottom: 2.5rem;
}
.sl-section:nth-child(even) {
  background: var(--neutral);
}
.sl-section:nth-child(odd) {
  background: var(--white);
}

/* ── Photo gallery ───────────────────────── */
.sl-gallery-section { background: var(--white) !important; }
.sl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 4px;
}
.sl-gallery-item {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.sl-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.sl-gallery-item:hover img { transform: scale(1.04); }
.sl-gallery-item--hero {
  grid-column: span 2;
  grid-row: span 2;
}
.sl-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(11,44,74,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.sl-gallery-item:hover .sl-gallery-overlay { opacity: 1; }
.sl-photo-count {
  position: absolute;
  bottom: .75rem; right: .75rem;
  background: rgba(11,44,74,.75);
  color: var(--white);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .75rem;
}

/* ── Virtual tour ────────────────────────── */
.sl-tour-section { background: var(--navy) !important; }
.sl-tour-section .section-title { color: var(--white); }
.sl-tour-section .eyebrow { color: var(--gold); }
.sl-tour-embed-wrap {
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}
.sl-tour-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.25rem;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sl-tour-provider {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.sl-tour-open-btn {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.sl-tour-open-btn:hover { color: var(--white); }
.sl-tour-iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: none;
  background: #000;
}

/* ── Body: description + contact ────────── */
.sl-body-section { background: var(--white) !important; }
.sl-body-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.sl-content {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
}
.sl-content p   { margin-bottom: 1rem; }
.sl-content h2,
.sl-content h3  { font-family: var(--serif); color: var(--navy); margin: 1.5rem 0 .6rem; }
.sl-content ul,
.sl-content ol  { margin: .5rem 0 1rem 1.25rem; }
.sl-content li  { margin-bottom: .4rem; }

/* Contact card */
.sl-contact-card {
  background: var(--neutral);
  padding: 2rem;
  position: sticky;
  top: 88px;
}
.sl-contact-card-eyebrow {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.sl-contact-card-phone {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.sl-contact-card-phone span {
  display: block;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.sl-contact-card-phone a {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
}
.sl-contact-card-phone a:hover { color: var(--gold); }

/* ── Floor plans ─────────────────────────── */
.sl-floorplans-section { background: var(--neutral) !important; }
.sl-fp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.sl-fp-card { display: flex; flex-direction: column; gap: .75rem; }
.sl-fp-image-wrap {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.sl-fp-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 480px;
}
.sl-fp-expand {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--navy);
  color: var(--white);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .45rem .9rem;
  text-decoration: none;
  transition: background .2s;
}
.sl-fp-expand:hover { background: var(--navy2); color: var(--white); }
.sl-fp-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text);
  text-align: center;
}

/* ── Lightbox ────────────────────────────── */
.rf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.rf-lightbox[hidden]     { display: none; }
.rf-lb-backdrop {
  position: fixed;
  inset: 0;
  z-index: 8999;
  background: rgba(0,0,0,.92);
  cursor: pointer;
}
.rf-lb-backdrop[hidden]  { display: none; }
.rf-lb-inner {
  position: relative;
  z-index: 9001;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rf-lb-image {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.rf-lb-close,
.rf-lb-prev,
.rf-lb-next {
  position: fixed;
  z-index: 9002;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
}
.rf-lb-close:hover,
.rf-lb-prev:hover,
.rf-lb-next:hover { background: rgba(255,255,255,.2); }
.rf-lb-close {
  top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px;
  font-size: 1.1rem; line-height: 1;
}
.rf-lb-prev,
.rf-lb-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 1.6rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.rf-lb-prev { left: 1.25rem; }
.rf-lb-next { right: 1.25rem; }
.rf-lb-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9002;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1100px) {
  .sl-body-grid { grid-template-columns: 1fr 320px; }
}

@media (max-width: 900px) {
  .sl-hero-grid    { grid-template-columns: 1fr; }
  .sl-hero-specs   { min-width: auto; }
  .sl-gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .sl-gallery-item--hero { grid-column: 1 / -1; grid-row: span 1; }
  .sl-body-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .sl-contact-card { position: static; }
  .sl-fp-grid      { grid-template-columns: 1fr; }
  .sl-tour-iframe  { height: 380px; }
}

@media (max-width: 600px) {
  .sl-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .sl-gallery-item--hero { grid-row: span 1; }
  .sl-hero-actions { flex-direction: column; align-items: flex-start; }
  .rf-lb-prev { left: .5rem; } .rf-lb-next { right: .5rem; }
}
