.plaza-container {
    width: 90%;
    max-width: 1230px;
    margin: 0 auto;
}
.plaza-wrapper {
	background:#f7f8f9;
}
.hero-gallery {
	background:#fff!important;
}
.hero-gallery .gal-main{
    margin: 20px auto 5px auto;
    width: 90%;
    max-width: 1230px;
	border-radius: 20px;
    overflow: hidden;
}

.acc-body .property-location-map iframe {
	width:100%!important;
	height:400px!important;
}

.enlarge{
	position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(10, 42, 59, 0.72);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    pointer-events: none;
}

.site-plan-main {
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

/* Thin scrollbar only for #open-units */
#open-units .locations{
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #999 transparent; /* Firefox */
}

/* Chrome, Edge, Safari */
.section-property-map .locations::-webkit-scrollbar {
    width: 3px;
    height: 3px;
	 border-radius: 10px;
}

.section-property-map .locations::-webkit-scrollbar-track {
    background: transparent;
}

.section-property-map .locations::-webkit-scrollbar-thumb {
    background: #0a2a3b;
    border-radius: 10px;
}

.section-property-map .locations::-webkit-scrollbar-thumb:hover {
    background: #666;
}
/***** BREADCRUMB *******/
.breadcrumb {
    padding: 14px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(10,42,59,0.08);
    font-size: 12px;
    color: #77777a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb-sep {
    opacity: 0.35;
    font-size: 10px;
}
.breadcrumb a {
    color: #7ba7ae;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.18s;
}
.breadcrumb a:hover {
    color: #0a2a3b;
}

/* =========================
   BASE GALLERY
========================= */
/***** Gallery *******/
.plaza-gallery {
    display: grid;
    gap: 3px;
    background: #0a2a3b;
}

/* =========================
   1 IMAGE = FULL WIDTH
========================= */
.plaza-gallery.gallery-layout-1 {
    grid-template-columns: 100%;
    grid-template-rows: 520px; 
}

@media(min-width:768px) {
	.plaza-gallery.gallery-layout-1.hero-gallery.site-plan:not(.site-plan-col-1) {
    grid-template-rows: auto;
}
}


/* =========================
   2 IMAGES = 60 / 40
========================= */
.plaza-gallery.gallery-layout-2 {
    grid-template-columns: 60% 40%;
    grid-template-rows: 520px;
}

/* =========================
   3+ IMAGES = CURRENT
========================= */
.plaza-gallery.gallery-layout-3 {
    grid-template-columns: 60% auto;
    grid-template-rows: 300px 180px;
}

/* Tablet Responsive */
@media (max-width: 768px) {

    .plaza-gallery.gallery-layout-1,
    .plaza-gallery.gallery-layout-2 {
        grid-template-rows: 320px;
        gap: 2px;
    }

    .plaza-gallery.gallery-layout-3 {
        grid-template-rows: 250px 150px;
        gap: 2px;
    }

    .lightbox-header {
        padding: 16px 20px;
    }

    .lightbox-image-container {
        padding: 80px 20px;
    }

    .lightbox-thumbnails {
        padding: 14px 20px;
        justify-content: flex-start;
    }

    .lightbox-nav-prev {
        left: 10px;
    }

    .lightbox-nav-next {
        right: 10px;
    }
}


/* =========================
   LIGHTBOX
========================= */
.plaza-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 42, 59, 0.96);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Lightbox Header */
.lightbox-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,42,59,0.8), transparent);
    z-index: 2;
}

.lightbox-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2px;
}

.lightbox-counter {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lightbox-close {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

/* Lightbox Image Container */
.lightbox-image-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 140px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

/* Lightbox Navigation */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-prev {
    left: 24px;
}

.lightbox-nav-next {
    right: 24px;
}

/* Lightbox Thumbnails */
.lightbox-thumbnails {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 72px;
    background: linear-gradient(to top, rgba(10,42,59,0.85), transparent);
    display: flex;
    gap: 8px;
    justify-content: center;
    overflow-x: auto;
    z-index: 2;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.plaza-lb-thumb {
    width: 72px;
    height: 48px;
    border-radius: 4px;
    background: #1a4a5f center/cover no-repeat;
    cursor: pointer;
    transition: opacity 0.18s, outline 0.18s;
    flex-shrink: 0;
}

.plaza-lb-thumb:hover {
    opacity: 0.8 !important;
}


/* =========================
   GALLERY GRID ITEMS
========================= */
.gal-main,
.gal-sm {
    background: center / cover no-repeat;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

/* Main spans 2 rows ONLY for 3+ gallery */
.gallery-layout-3 .gal-main {
    grid-row: span 2;
}

/* Main Overlay */
.gal-main .gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,42,59,0.15);
    transition: background 0.3s;
}

.gal-main:hover .gal-overlay {
    background: rgba(10,42,59,0);
}

/* Small Overlay */
.gal-sm .gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,42,59,0.2);
    transition: background 0.3s;
}

.gal-sm:hover .gal-overlay {
    background: rgba(10,42,59,0);
}

/* Gallery Count Button */
.gal-count {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(10,42,59,0.75);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 99px;
    z-index: 2;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.gal-count:hover {
    background: rgba(10,42,59,0.9);
    transform: scale(1.05);
}
/***** Gallery *******
 * 
.plaza-gallery {
    display: grid;
    grid-template-columns: 60% auto;
    grid-template-rows: 300px 180px;
    gap: 3px;
    background: #0a2a3b;
}


@media (max-width: 768px) {
    .plaza-gallery {
        grid-template-rows: 250px 150px;
        gap: 2px;
    }
}


#plaza-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 42, 59, 0.96);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.lightbox-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,42,59,0.8), transparent);
    z-index: 2;
}

.lightbox-title {
    font-family: 'Comfortaa', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2px;
}

.lightbox-counter {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lightbox-close {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}


.lightbox-image-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 140px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}


.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-prev {
    left: 24px;
}

.lightbox-nav-next {
    right: 24px;
}


.lightbox-thumbnails {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 72px;
    background: linear-gradient(to top, rgba(10,42,59,0.85), transparent);
    display: flex;
    gap: 8px;
    justify-content: center;
    overflow-x: auto;
    z-index: 2;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.plaza-lb-thumb {
    width: 72px;
    height: 48px;
    border-radius: 4px;
    background: #1a4a5f center/cover no-repeat;
    cursor: pointer;
    transition: opacity 0.18s, outline 0.18s;
    flex-shrink: 0;
}

.plaza-lb-thumb:hover {
    opacity: 0.8 !important;
}


.gal-main {
    background: center / cover no-repeat;
    grid-row: span 2;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gal-main .gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,42,59,0.15);
    transition: background 0.3s;
}

.gal-main:hover .gal-overlay {
    background: rgba(10,42,59,0);
}

.gal-sm {
    background: center/cover no-repeat;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.gal-sm .gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,42,59,0.2);
    transition: background 0.3s;
}

.gal-sm:hover .gal-overlay {
    background: rgba(10,42,59,0);
}

.gal-count {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(10,42,59,0.75);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 99px;
    z-index: 2;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
}

.gal-count:hover {
    background: rgba(10,42,59,0.9);
    transform: scale(1.05);
}
*/

/***** UNIT MAP *******/
.section-map {
	height: 550px;
}
.section-map img {
	max-width: none;
	width: auto;
}
.section-property-map {
    background: #88ac97;
    color: #fff;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.section-property-map .images {
	display: block;
	font-size: 0;
	line-height: 0;
	position: relative;
	width: 100%;
}
.section-property-map .images img {
	display: block;
}
.section-property-map .active,.section-property-map .labels {
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 5;
}
.section-property-map .active {
	z-index: 4;
}
.section-property-map .active img {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.section-label {
    padding: 10px;
}
.section-property-map .locations {
	background: #fcc56c;
	bottom: 0;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3em;
	padding: 42px 30px;
	position: absolute;
	right: 0;
	text-transform: uppercase;
	top: 0;
	width: 280px;
	z-index: 40;
	overflow:auto;
}
.section-property-map .locations .active {
	color: #231f20;
}
.section-property-map .locations ul {
	list-style: none outside none;
}
.section-property-map .locations li {
	height: 100%;
	overflow: hidden;
	padding: 0 0 4px 30px;
	position: relative;
}
.section-property-map .locations span {
	float: left;
	left: 0;
	position: absolute;
	top: 0;
}
.section-property-map .locations .active span {
	color: #231f20;
}
/*****Property Header*******/
.prop-header {
    background: #fff;
    padding: 28px 0px;
    border-bottom: 1px solid rgba(10,42,59,0.08);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.prop-header-inner {
	 display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.prop-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7ba7ae;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.prop-eyebrow::after {
    content: '';
    width: 32px;
    height: 2px;
    background: #7ba7ae;
    border-radius: 2px;
}
.prop-name {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 400;
    color: #0a2a3b;
    line-height: 1.2;
    margin-bottom: 6px;
	padding-bottom:0px;
}
.prop-address {
    font-size: 13px;
    color: #77777a;
}
.prop-address a {
    color: #7ba7ae;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.18s;
}
.prop-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-amber {
    background: #fcc56c;
    color: #0a2a3b;
}
/* BUTTONS  same as about pages */
.btn{
	display:inline-flex;
	align-items:center;
	padding:12px 24px;
	/* font-family:'Nunito',sans-serif; */
	font-size:11px;
	font-weight:800;
	letter-spacing:0.1em;
	text-transform:uppercase;
	border-radius:99px;
	border:none;
	cursor:pointer;
	text-decoration:none;
	transition:all 0.22s;
	white-space:nowrap;
}

.btn-amber:hover{
	background:#fde0a8;
	transform:translateY(-2px);
	box-shadow:0 8px 20px rgba(252,197,108,0.4);
}
.btn-navy{
	background:#0a2a3b;
	color:#fff;
}
.btn-navy:hover{
	background:#0a2a3b;
	transform:translateY(-2px);
}
.btn-outline{
	background:transparent;
	color:#0a2a3b;
	border:1.5px solid rgba(10,42,59,0.2);
}
.btn-outline:hover{
	border-color:#0a2a3b;
	background:rgba(10,42,59,0.05);
	transform:translateY(-1px);
}
/*****Column Layout*******/
.prop-layout{
  display:grid;
  grid-template-columns:minmax(0, calc(100% - 368px)) 340px;
  gap:28px;
  align-items:start;
  padding:30px 0;
}

/* STATS BAR  no emojis, teal accent lines instead */
.stats-bar{
	display: grid;
    grid-template-columns: repeat(4, minmax(120px, auto));
   /* justify-content: space-between; */
    gap: 1px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(10,42,59,0.08);
}
.stat-item{
	background:#fff;
	padding:22px 24px;
	border-top:3px solid transparent;
	transition:border-color 0.22s,background 0.22s;
	border-right: 1px solid rgba(10, 42, 59, 0.08);
}

.stat-item:last-child{ 
	 border-right:0px;
}
.stat-item:hover{
	border-top-color:#7ba7ae;
	background:#e8f2f3;
}
.stat-pre{
	font-size:9px;
	font-weight:600;
	letter-spacing:0.18em;
	text-transform:uppercase;
	color:#7ba7ae;
	margin-bottom:8px;
}
.stat-val{
	font-size:22px;
	font-weight:400;
	color:#0a2a3b;
	letter-spacing:-0.01em;
	line-height:1;
	margin-bottom:4px;
}
.stat-lbl{
	font-size:10px;
	text-transform:uppercase;
	letter-spacing:0.14em;
	color:#77777a;
	font-weight:400;
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 20px;
}
.plaza-sidebar-outer {
	position: sticky;
    top: 30px;
}
.sb-card{
	background:#fff;
	border-radius:12px;
	border:1px solid rgba(10,42,59,0.08);
	overflow:hidden;
	transition:box-shadow 0.22s;
}
.sb-card:hover{
	box-shadow:0 8px 24px rgba(10,42,59,0.09);
}
.sb-head{
	background:#0a2a3b;
	padding:14px 20px;
}
.sb-head-title{
	font-size:10px;
	font-weight:800;
	letter-spacing:0.2em;
	text-transform:uppercase;
	color:#a8c8cc;;
}
.sb-body{
	padding:18px 20px;
}
.spec-row{
	display:flex;
	justify-content:space-between;
	align-items:baseline;
	padding:8px 0;
	border-bottom:1px solid rgba(10,42,59,0.08);
	gap:12px;
}
.spec-row:last-child{
	border-bottom:none;
	padding-bottom:0;
}
.spec-label{
	font-size:12px;
	color:#77777a;
	font-weight:600;
}
.spec-val{
	font-size:13px;
	font-weight:800;
	color:#0a2a3b;
	text-align:right;
}
.spec-val.teal{
	color:#7ba7ae;
}

/* ACCORDION */
.acc{
	background:#fff;
	border-radius:12px;
	border:1px solid rgba(10,42,59,0.08);
	overflow:hidden;
	margin-bottom:16px;
	transition:box-shadow 0.22s;
}
.acc:hover{
	box-shadow:0 4px 20px rgba(10,42,59,0.07);
}
.acc-header{
	padding:18px 24px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	cursor:pointer;
	user-select:none;
	border-left:3px solid transparent;
	transition:border-left-color 0.22s,background 0.18s;
}
.acc-header:hover{
	background:#f7f8f9;
	border-left-color:#7ba7ae;
}
.acc-title{
	font-size:14px;
	font-weight:800;
	color:#0a2a3b;
	letter-spacing:-0.01em;
}
.acc-toggle{
	width:26px;
	height:26px;
	border-radius:50%;
	background:#e8f2f3;
	display:flex;
	align-items:center;
	justify-content:center;
	color:#7ba7ae;
	font-size:15px;
	font-weight:900;
	transition:background 0.18s,color 0.18s;
	flex-shrink:0;
}
.acc-header:hover .acc-toggle{
	background:#7ba7ae;
	color:#fff;
}
.acc-body{
	padding:22px 24px;
	border-top:1px solid rgba(10,42,59,0.08);
	max-height:2000px;
	overflow:hidden;
	transition:max-height 0.4s cubic-bezier(0.22,1,0.36,1),padding 0.3s ease,opacity 0.3s ease;opacity:1;
}

.open-unit-body {
	max-height:unset!important;
}

.acc-body.collapsed{
	max-height:0;
	padding-top:0;
	padding-bottom:0;
	border-top:none;
	opacity:0;
}

.teal {
	color:#7ba7ae;
	background: #e8f2f3;
	padding:5px 14px;
	font-size:11px;
	font-weight:700;
	border-radius:99px;
}
.amber{
	color:#e8a830;
	background:#FFF6E9;
	padding:5px 14px;
	font-size:11px;
	font-weight:700;
	border-radius:99px;
}

.detail-section-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7ba7ae;
    margin-bottom: 12px;
}

/* OPEN UNIT LIST */
.oul-cols{
	display:grid;
	grid-template-columns: 30% 15% 15% 15% 15% 40px;;
	padding:11px 24px;
	background:#0a2a3b;
}
.oul-col{
	font-size:9px;
	font-weight:800;
	letter-spacing:0.16em;
	text-transform:uppercase;
	color:rgba(255,255,255,0.4);
}

/* TENANT CARD */
.tenant-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  background: #f7f8f9;
  border-radius: 6px;
  border: 1px solid rgba(10,42,59,0.08);
  transition: border-color 0.22s, background 0.22s;
}
.tenant-card:hover {
  border-color: #a8c8cc;
  background: #e8f2f3;
}
.tenant-av {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #0a2a3b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tenant-av span {
  font-size: 9px;
  font-weight: 900;
  color: #fcc56c;
  letter-spacing: 0.04em;
}
.brand-card {
  background: #f7f8f9;
  border: 1px solid rgba(10,42,59,0.08);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10, 42, 59, 0.1);
  border-color: #a8c8cc;
}
.brand-logo-box {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-initials {  
  font-size: 20px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}
.brand-name {
  font-size: 13px;
  font-weight: 800;
  color: #0a2a3b;
  padding: 12px 14px 2px;
}
.brand-cat {
  font-size: 11px;
  color: #77777a;
  padding: 0 14px 14px;
  font-weight: 600;
}

.map-link{
	font-size:11px;
	font-weight:800;
	letter-spacing:0.08em;
	text-transform:uppercase;
	color:#7ba7ae;
	text-decoration:none;
	border-bottom:1px solid #a8c8cc;
	padding-bottom:1px;
	transition:color 0.18s;
}
.map-link:hover{
	color:#0a2a3b;
}

.location .acc-body {
    padding: 0;
}
.location-addr {
    padding: 10px 22px 24px;
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.stie-plan-footer {
	padding: 15px 24px;
	display: flex;
    align-items: center;
    justify-content: space-between;
}

/* DEMO TABLE */
.table-wrap {
	overflow:auto;
}
.demo-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(10,42,59,0.08);
}
.demo-table th {
  background: #0a2a3b;
  padding: 12px 16px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: left;
}
.demo-table th.ring {
  background: #0d3347;
  color: #fcc56c;
  text-align: center;
}
.demo-table tr {
  transition: background 0.18s;
}
.demo-table tbody tr:hover {
  background: #e8f2f3;
}
.demo-table td {
  padding: 13px 16px;
  font-size: 13px;
  color: #444;
  border-bottom: 1px solid rgba(10,42,59,0.08);
}
.demo-table td.label {
  background: #f7f8f9;
  font-weight: 700;
  color: #0a2a3b;
}
.demo-table tr:hover td.label {
  background: #e8f2f3;
}
.demo-table td.val {
  text-align: center;
  font-weight: 600;
}
.demo-table .hi td.val {
  text-align: center;
  font-weight: 800;
  color: #7ba7ae;
}
.demo-table tr:last-child td {
  border-bottom: none;
}

/* DOWNLOADS */
.dl-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  background: #f7f8f9;
  border: 1.5px solid rgba(10,42,59,0.08);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #0a2a3b;
  text-decoration: none;
  transition: all 0.22s;
  letter-spacing: 0.02em;
}
.dl-btn:hover {
  border-color: #7ba7ae;
  background: #e8f2f3;
  color: #7ba7ae;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(123, 167, 174, 0.2);
}
.dl-label {
  display: block;
  width: 3px;
  height: 28px;
  background: #7ba7ae;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.18s;
}
.dl-btn:hover .dl-label {
  background: #e8a830;
}

.agent-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(10,42,59,0.08);;
}
.agent-row:last-of-type {
   margin-bottom: 0;
  border-bottom: none;
}
.agent-av {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.agent-av img {
    border-radius: 50%;
}
.agent-name {
  font-size: 13px;
  font-weight: 800;
  color: #0a2a3b;
  margin-bottom: 2px;
}
.agent-role {
  font-size: 11px;
  color: #77777a;
  margin-bottom: 8px;
  line-height: 1.4;
}
.agent-links {
  display: flex;
  gap: 12px;
}
.agent-link {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7ba7ae;
  text-decoration: none;
  border-bottom: 1px solid #a8c8cc;
  padding-bottom: 1px;
  transition: color 0.18s, border-color 0.18s;
}
.agent-link:hover {
  color: #0a2a3b;
  border-color: #0a2a3b;
}
.mini-form input,
.mini-form textarea {
  width: 100%;
  font-family: "Nunito", sans-serif;
  font-size: 13px!important;
  color: #0a2a3b!important;
  background: #f7f8f9!important;
  border: 1.5px solid rgba(10,42,59,0.08)!important;
  border-radius: 6px!important;
  padding: 10px 13px!important;
  outline: none;
  box-shadow:unset!important;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
  margin-bottom: 8px!important;
}
.mini-form input:focus,
.mini-form textarea:focus {
  border-color: #7ba7ae!important;
  box-shadow: 0 0 0 3px rgba(123, 167, 174, 0.12)!important;
}
.mini-form textarea {
	height:70px!important;
  resize: none!important;
  line-height: 1.6!important;
}
.mini-form-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #77777a;
  margin-bottom: 10px;
  display: block;
  padding-top: 14px;
  border-top: 1px solid rgba(10,42,59,0.08);
  margin-top: 4px;
}

.mini-form .gform-theme--foundation .gform_fields {
    display: block!important;
}

.mini-form .gform_button{
	width: 100%!important;
    font-family: Nunito, sans-serif;
    font-size: 11px!important;
    font-weight: 800!important;
    letter-spacing: 0.1em!important;
    text-transform: uppercase!important;
    background: #fcc56c!important;
    color: #0a2a3b;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 99px!important;
    padding: 13px!important;
    cursor: pointer;
    transition: 0.22s;
    margin-top: 4px;
}
.mini-form .gform_button:hover{
	background:#fde0a8!important;
}

/******* Open Unit List********/
.oul-cols {
  display: grid;
    grid-template-columns: 18fr 9fr 10fr 10fr 10fr 10px !important;
  padding: 11px 24px;
  background: #0a2a3b;
	gap:10px;
}
.oul-col {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.oul-row {
  display: grid;
  grid-template-columns: 18fr 9fr 10fr 10fr 10fr 10px !important;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(10,42,59,0.08);
  align-items: center;
  border-left: 3px solid transparent;
  transition: background 0.18s, border-left-color 0.18s;
  cursor: pointer;
}
.oul-row:last-child {
  border-bottom: none;
}
.oul-row:hover {
  background: #e8f2f3;
  border-left-color: #7ba7ae;
}

.oul-unit-name {
  font-size: 14px;
  font-weight: 800;
  color: #0a2a3b;
}
.oul-unit-sub {
  font-size: 11px;
  color: #77777a;
  margin-top: 2px;
}
.oul-sf {
  font-size: 14px;
  color: #444;
  font-weight: 600;
}
.oul-pill {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 99px;
  display: inline-block;
}
.oul-pill.cru {
  background: #e8f2f3;
  color: #7ba7ae;
}
.oul-pill.pad {
  background: rgba(252, 197, 108, 0.15);
  color: #e8a830;
}
.oul-rent {
  font-size: 13px;
  color: #444;
  font-weight: 600;
}
.oul-avail {
  font-size: 12px;
  color: #77777a;
}
.oul-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f2f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7ba7ae;
  transition: background 0.18s, transform 0.25s;
  flex-shrink: 0;
  justify-self: end;
}
.oul-row:hover .oul-chevron {
  background: #7ba7ae;
  color: #fff;
}
.oul-chevron.open {
  transform: rotate(90deg);
  background: #7ba7ae;
  color: #fff;
}
.oul-chevron svg {
  display: block;
}
.oul-btn {
  font-family: "Nunito", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 99px;
  background: #0a2a3b;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
}
.oul-btn:hover {
  background: #7ba7ae;
  transform: translateY(-1px);
}
.oul-unit-wrap {
  border-bottom: 1px solid rgba(10,42,59,0.08);
}
.oul-unit-wrap:last-child {
  border-bottom: none;
}
.oul-row-toggle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #a8c8cc;
  color: #7ba7ae;
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.oul-row:hover .oul-row-toggle {
  background: #7ba7ae;
  color: #fff;
}
.oul-detail {
  background: #f7f8f9;
  border-top: 1px solid rgba(10,42,59,0.08);
  padding: 24px 28px;
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease,
    opacity 0.3s ease;
  opacity: 1;
}
.oul-detail.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top: none;
  opacity: 0;
}
.oul-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 80px) / 3));
  gap: 0 40px;
}
.oul-detail-col {
}
.oul-detail-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7ba7ae;
  margin-bottom: 12px;
}
.oul-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid rgba(10,42,59,0.08);
  gap: 12px;
  font-size: 13px;
}
.oul-spec-row:last-child {
  border-bottom: none;
}
.oul-spec-row span:first-child {
  color: #77777a;
  font-weight: 600;
}
.oul-spec-row span:last-child {
  color: #0a2a3b;
  font-weight: 700;
  text-align: right;
}
.oul-empty {
  padding: 40px 24px;
  text-align: center;
}
.oul-empty-title {
  font-size: 16px;
  font-weight: 800;
  color: #0a2a3b;
  margin-bottom: 6px;
}
.oul-empty-body {
  font-size: 14px;
  color: #77777a;
  margin-bottom: 20px;
  line-height: 1.7;
}

.site-plan{
	position:relative;
}

/******* Responsive *******/
@media screen and (max-width: 1023px) {
    .section-property-map .locations {
        font-size: 16px;
        line-height: 19px;
        padding: 20px;
        width: 201px;
    }
	.section-property-map .locations li {
        padding: 0 0 4px 20px;
    }
	.section-property-map .locations span {
        margin-top: -1px;
    }
}
@media screen and (max-width: 760px) {
    .section-property-map .images {
        margin: -4px 0 -9px;
        min-width: 480px;
    }
	.section-property-map .locations {
        bottom: auto;
        padding: 20px;
        position: relative;
        right: auto;
        top: auto;
        width: auto;
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .plaza-gallery {
        grid-template-columns: 100%;
        grid-template-rows: auto;
        gap: 3px;
    }
    
    .gal-main {
        grid-row: span 1;
        min-height: 280px;
    }
    
    /*.gal-sm {
        min-height: 180px;
    }*/
}
/* Mobile Lightbox Optimizations */
@media (max-width: 768px) {
	.prop-layout, .oul-detail-grid {
		grid-template-columns:100%;
	}
	.stats-bar {
   		grid-template-columns: repeat(2, minmax(50%, auto)); 
	}
    .lightbox-header {
        padding: 15px 20px;
    }
    
    .lightbox-title {
        font-size: 14px;
    }
    
    .lightbox-close {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .lightbox-image-container {
        padding: 60px 20px;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-nav-prev {
        left: 12px;
    }
    
    .lightbox-nav-next {
        right: 12px;
    }
    
    .lightbox-thumbnails {
        padding: 12px 20px;
    }
    
    .plaza-lb-thumb {
        width: 60px;
        height: 40px;
    }
}

/* Small Mobile Optimizations */
@media (max-width: 480px) {
    .lightbox-header {
        padding: 12px 16px;
    }
    
    .lightbox-title {
        font-size: 12px;
    }
    
    .lightbox-counter {
        font-size: 9px;
    }
    
    .lightbox-close {
        padding: 4px 8px;
        font-size: 9px;
    }
    
    .lightbox-image-container {
        padding: 50px 12px;
    }
    
    .lightbox-nav {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .lightbox-nav-prev {
        left: 8px;
    }
    
    .lightbox-nav-next {
        right: 8px;
    }
    
    .lightbox-thumbnails {
        padding: 10px 16px;
        gap: 6px;
    }
    
    .plaza-lb-thumb {
        width: 50px;
        height: 35px;
    }
    
    .gal-count {
        font-size: 9px;
        padding: 4px 10px;
        bottom: 8px;
        right: 8px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .gal-main .gal-overlay,
    .gal-sm .gal-overlay {
        background: transparent;
    }
    
    .lightbox-nav:hover {
        transform: translateY(-50%);
    }
    
    .gal-count:hover {
        transform: none;
    }
}
/* =========================
   TABLET (1024px and below)
========================= */
@media (max-width: 1024px) {
    .oul-row {
        grid-template-columns: 16fr 8fr 9fr 9fr 9fr 32px !important;
        padding: 14px 18px;
        column-gap: 10px;
    }

    .oul-row > div {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /*.oul-unit-name,
    .oul-unit-sub,
    .oul-rent,
    .oul-avail {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }*/
}


/* =========================
   SMALL TABLET (768px and below)
========================= */
@media (max-width: 768px) {
    .oul-cols {
        display: none;
    }

    .oul-row {
        grid-template-columns: 1fr 30px !important;
        padding: 16px;
        gap: 12px;
        align-items: start;
    }

    /* First column full width */
    .oul-row > div:nth-child(1) {
        grid-column: 1 / 2;
    }

    /* Chevron */
    .oul-row > div:last-child {
        grid-column: 2 / 3;
        grid-row: 1;
        justify-self: end;
        align-self: start;
    }

    /* Remaining columns stack */
    .oul-row > div:nth-child(2),
    .oul-row > div:nth-child(3),
    .oul-row > div:nth-child(4),
    .oul-row > div:nth-child(5) {
        grid-column: 1 / -1;
        padding-left: 0;
    }

    .oul-row > div {
        min-width: 0;
    }

    .oul-unit-name {
        font-size: 16px;
        line-height: 1.3;
    }

    .oul-unit-sub {
        font-size: 13px;
    }
	
	#plaza-prop-details .acc-body > div {
		grid-template-columns: 100%!important;
   		 gap: 56px 0!important;
	}
	.oul-detail-grid {
		gap: 40px 0!important;
	}
	.tenant-card {
		 display: flex;
		flex-direction: column;
		align-items: start;
	}
	.featured-brands .acc-body > div {
		grid-template-columns: 100% !important;
		gap: 20px 0 !important;
	}
}


/* =========================
   MOBILE (576px and below)
========================= */
@media (max-width: 576px) {
    .oul-row {
        display: flex !important;
        flex-direction: column;
        padding: 18px 24px;
        gap: 10px;
        position: relative;
    }

    .oul-chevron {
        position: absolute;
        top: 18px;
        right: 24px;
    }

    .oul-unit-name {
        font-size: 15px;
        padding-right: 28px;
    }

    .oul-unit-sub,
    .oul-sf,
    .oul-rent,
    .oul-avail {
        font-size: 13px;
    }

    .oul-pill {
        display: inline-block;
        font-size: 12px;
    }
}

/* -------------------------------------------------
   Province HERO
------------------------------------------------- */

.province-eyebrow{
	font-size:12px;
	font-weight:700;
	letter-spacing:.12em;
	text-transform:uppercase;
	color:#FCC56C;
	margin-bottom:14px;
}

.province-desc{
	max-width:780px;
	margin:0 auto;
	font-size:18px;
	line-height:1.7;
	color:#607080;
}


	.plaza-property-filters{
		display:flex;
		flex-wrap:wrap;
		gap:16px;
		align-items:center;
	}
		
	.plaza-filter-group {
		flex: 1;
		flex-basis: max-content;
	}

	/* Custom Select Wrapper */
	.plaza-select-wrapper {
		position: relative;
		display: inline-block;
		width: 100%;
	}

	.plaza-select-wrapper select, .plaza-search-wrapper input {
		height: 48px;
		border: 1px solid #dddddd;
		border-radius: 12px;
		width: 100%;
		font-size: 14px;
		background: #fff;
		color: #000;
	}
		
	.plaza-select-wrapper select {
		padding: 0 40px 0 18px;
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		cursor: pointer;
	}

	.plaza-select-wrapper select:focus {
		outline: none;
		border-color: #7BA7AE;
	}

	.plaza-select-icon {
		position: absolute;
		right: 14px;
		top: 50%;
		transform: translateY(-50%);
		pointer-events: none;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.plaza-select-icon svg {
		width: 18px;
		height: 19px;
		transition: transform 0.2s ease;
	}

	.plaza-select-wrapper select:focus + .plaza-select-icon svg {
		transform: rotate(180deg);
	}

	/* Custom Search Input Wrapper */
	.plaza-search-wrapper {
		position: relative;
		display: inline-block;
		width: 100%;
	}

	.plaza-search-wrapper input {
		padding: 0 18px 0 45px;
	}
	
	.plaza-search-wrapper input::placeholder {
		color: #000;
	}

	.plaza-search-wrapper input:focus {
		outline: none;
		border-color: #7BA7AE;
	}

	.plaza-search-icon {
		position: absolute;
		left: 14px;
		top: 50%;
		transform: translateY(-50%);
		pointer-events: none;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.plaza-search-icon svg {
		width: 19px;
		height: 20px;
	}

	.plaza-search-btn{
		height:48px;
		padding:0 28px;
		border:none;
		border-radius:12px;
		background:#fcc56c;
		color:#000000;
		font-weight:700;
		cursor:pointer;
		transition:all .25s ease;
	}

	.plaza-search-btn:hover{
		transform:translateY(-2px);
		background:#7BA7AE;
		color: #fff;
	}

	/* Reset Button Styles */
	.plaza-reset-btn{
		height:48px;
		padding:0 28px;
		border:1px solid #dddddd;
		border-radius:12px;
		background:#fff;
		color:#607080;
		font-weight:700;
		text-decoration:none;
		display:inline-flex;
		align-items:center;
		justify-content:center;
		transition:all .25s ease;
	}

	.plaza-reset-btn:hover{
		background:#f5f7f9;
		border-color:#0a2a3b;
		color:#0a2a3b;
		transform:translateY(-2px);
	}
		
	.plaza-property-filters ~ .plaza-property-grid {
		margin-top: 40px;
	}

	.plaza-property-grid{
		display:grid;
		gap:32px;
	}

	.plaza-grid-cols-1{
		grid-template-columns:repeat(1,minmax(0,1fr));
	}

	.plaza-grid-cols-2{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}

	.plaza-grid-cols-3{
		grid-template-columns:repeat(3,minmax(0,1fr));
	}

	.plaza-grid-cols-4{
		grid-template-columns:repeat(4,minmax(0,1fr));
	}

	.plaza-grid-cols-5{
		grid-template-columns:repeat(5,minmax(0,1fr));
	}

	.plaza-grid-cols-6{
		grid-template-columns:repeat(6,minmax(0,1fr));
	}

	.plaza-property-card{
		background:#fff;
		border-radius:24px;
		overflow:hidden;
		box-shadow:0 12px 32px rgba(0,0,0,0.06);
		transition:transform .3s ease, box-shadow .3s ease;
	}

	.plaza-property-card:hover{
		transform:translateY(-6px);
		box-shadow:0 20px 48px rgba(0,0,0,0.12);
	}

	.plaza-property-card a{
		display:flex;
		flex-direction:column;
		height:100%;
		text-decoration:none;
		color:inherit;
	}

	.plaza-property-image{
		aspect-ratio:16/10;
		background:center center/cover no-repeat;
		background-color:#edf2f5;
	}

	.plaza-property-content{
		padding:24px;
	}
		
	.plaza-property-type {
		font-size: 11px;
		font-weight: 800;
		letter-spacing: .12em;
		text-transform: uppercase;
		color: #000000;
		margin-bottom: 12px;
	}

	.plaza-property-title {
		font-size: 22px;
		line-height: 1.15;
		color: #0a2a3b;
		margin: 0 0 14px;
	}

	.plaza-property-location {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 14px;
		color: #000000;
		line-height: 1.5;
		margin-bottom: 22px;
	}

	.plaza-property-location svg {
		width: 20px;
		height: 20px;
		flex-shrink: 0;
	}

	.plaza-property-more {
		font-size: 14px;
		font-weight: 500 !important;
		color: #fcc56c !important;
	}

	.plaza-pagination{
		margin-top:48px;
		display:flex;
		justify-content:center;
		gap:10px;
	}

	.plaza-pagination .page-numbers{
		width:44px;
		height:44px;
		display:flex;
		align-items:center;
		justify-content:center;
		border-radius:50%;
		border:1px solid #d7dfe5;
		text-decoration:none;
		color:#0a2a3b;
		font-weight:700;
		transition:all .2s ease;
	}

	.plaza-pagination .page-numbers:hover{
		background:#0a2a3b;
		color:#fff;
		border-color:#0a2a3b;
	}

	.plaza-pagination .current{
		background:#0a2a3b;
		color:#fff;
		border-color:#0a2a3b;
	}

	.plaza-no-properties{
		padding:40px;
		background:#f5f7f9;
		border-radius:20px;
		text-align:center;
		font-size:18px;
		color:#607080;
		grid-column:1/-1;
	}

	.plaza-reset-suggestion {
		margin-top: 15px;
		font-size: 14px;
	}

	@media(max-width:991px){

		.plaza-property-grid{
			grid-template-columns:repeat(2,minmax(0,1fr)) !important;
		}
	}

	@media(max-width:767px){

		.plaza-property-grid{
			grid-template-columns:1fr !important;
			gap:24px;
		}

		.plaza-property-filters{
			flex-direction:column;
			align-items:stretch;
		}

		.plaza-property-filters select,
		.plaza-property-filters input,
		.plaza-search-btn,
		.plaza-reset-btn{
			width:100%;
		}

		.plaza-property-title{
			font-size:22px;
		}

		.plaza-property-content{
			padding:22px;
		}
		.brand-logo-box {
			height:100px;
		}
		.stie-plan-footer, .location-addr {
			flex-direction: column;
			gap: 12px;
		}
	}