/*
*****************************************
 PVII Harmony: CSS Page Grid Framework
 by Project Seven Development - ver 1.2.0
 www.projectseven.com -- CHATEAU - original
*****************************************
*/
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
}
}
.p7HMY {
	margin: auto;
}
/*--------------------------------------------------------
 Restrict height of logo image to a maximum of 60px
--------------------------------------------------------*/

img.footer-logo {max-height: 200px;}

img.z-logo-sm {max-height: 125px;}
img.z-logo {max-height: 200px;}
img.z-logo-lg {max-height: 250px;}
img.z-logo-horiz {max-height: 525px;}
img.z-logo-verti {max-height: 725px;}


/* =====================================================
   L3 - CONTAINERS (SAFE SCOPED)
===================================================== */


.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}


/* =====================================================
   L3 - HMY COLOR SYSTEM (UNCHANGED)
===================================================== */

.p7HMY .hmy-content-wrapper.hmy-color-content-mint { background: rgb(73,159,175); color: #000; }
.p7HMY .hmy-content-wrapper.hmy-color-content-blue { background: rgb(69,114,150); color: #fff; }
.p7HMY .hmy-content-wrapper.hmy-color-content-gray { background: rgb(134,134,134); color: #000; }
.p7HMY .hmy-content-wrapper.hmy-color-content-black { background: rgb(21,21,21); color: #fff; }
.p7HMY .hmy-content-wrapper.hmy-color-content-white { background: rgb(255,255,255); color: #000; }
.p7HMY .hmy-content-wrapper.hmy-color-content-green { background: rgb(126,188,89); color: #fff; }
.p7HMY .hmy-content-wrapper.hmy-color-content-red { background: rgb(251,11,11); color: #000; }
.p7HMY .hmy-content-wrapper.hmy-color-content-skyblue { background: rgb(140,188,208); color: #000; }
.p7HMY .hmy-content-wrapper.hmy-color-content-silver { background: rgb(230,219,201); color: #000; }
.p7HMY .hmy-content-wrapper.hmy-color-content-purple { background: rgb(17,28,48); color: #fff; }
.p7HMY .hmy-content-wrapper.hmy-color-content-beige { background: rgb(231,213,175); color: #000; }
.p7HMY .hmy-content-wrapper.hmy-color-content-wine { background: rgb(167,27,27); color: #fff; }
.p7HMY .hmy-content-wrapper.hmy-color-content-forest { background: rgb(107,138,85); color: #fff; }
.p7HMY .hmy-content-wrapper.hmy-color-content-gold { background: rgb(226,160,71); color: #000; }
.p7HMY .hmy-content-wrapper.hmy-color-content-orange { background: rgb(239,118,51); color: #fff; }



/*
******************************
           BORDERS
******************************
*/
.p7HMY.hmy-border-root-all,
.p7HMY .hmy-content-wrapper.hmy-border-content-all {
	border: 1px solid;
}
.p7HMY.hmy-border-root-top,
.p7HMY .hmy-content-wrapper.hmy-border-content-top {
	border-top: 1px solid;
}
.p7HMY.hmy-border-root-right,
.p7HMY .hmy-content-wrapper.hmy-border-content-right {
	border-right: 1px solid;
}
.p7HMY.hmy-border-root-bottom,
.p7HMY .hmy-content-wrapper.hmy-border-content-bottom {
	border-bottom: 1px solid;
}
.p7HMY.hmy-border-root-left,
.p7HMY .hmy-content-wrapper.hmy-border-content-left {
	border-left: 1px solid;
}
.p7HMY.hmy-border-root-left-right,
.p7HMY .hmy-content-wrapper.hmy-border-content-left-right {
	border-left: 1px solid;
	border-right: 1px solid;
}
.p7HMY.hmy-border-root-top-bottom,
.p7HMY .hmy-content-wrapper.hmy-border-content-top-bottom {
	border-top: 1px solid;
	border-bottom: 1px solid;
}
.border-black {
	border-color: #000 !important;
}
.border-white {
	border-color: #FFF !important;
}

/*
******************************
       BORDER-RADIUS
******************************
*/
.p7HMY.hmy-root-rounded,
.p7HMY .hmy-content-wrapper.hmy-content-rounded {
	border-radius: 5px;
}

/*
********************************
     Section Text Styles
********************************
*/
.p7HMY .hmy-section a.text-link {
	border-bottom: 1px dotted;
	transition: all linear .5s;
	color: inherit;
	text-decoration: none;
}
.p7HMY .hmy-section a.text-link:hover {
	border-bottom: 1px solid;
}
.hmy-section .hmy-img a,
.hmy-section .hmy-img a:hover {
	border: none;
	display: block;
}
.hmy-section h1 {
	font-size: 1.5rem;
}
.hmy-section h2 {
	font-size: 1.4rem;
}
.hmy-section h3 {
	font-size: 1.3rem;
}
.hmy-section h4, .hmy-section h5 {
	font-size: 1.2rem;
}

p {
  margin-bottom: 16px;
}

h1, h2, h3 {
  margin-bottom: 12px;
}
.hmy-section h1:first-child,
.hmy-section h2:first-child,
.hmy-section h3:first-child,
.hmy-section h4:first-child,
.hmy-section h5:first-child {
	margin: 0px;
    color: inherit;
}
.hmy-section p {
	margin: 4px 0px 8px 0px;
	line-height: 1.6;
}

/*
********************************
       CONTENT AREAS
********************************
*/
.p7HMY .hmy-content p:first-child {margin-top: 0px;}
.rounded {border-radius: 4px;}
.hmy-content {padding: 20px;}

/*
**********************************
   CORE STYLES - DO NOT EDIT
**********************************
*/

.p7HMY {
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	display: -webkit-box;
	display: flex;
}
.hmy-section {
	-webkit-flex-grow: 1;
	flex-grow: 1;
	box-sizing: border-box;
	display: flex;
}
.hmy-content-wrapper {
	box-sizing: border-box;
	width: 100%;
}
.hmy-content {
	box-sizing: border-box;
}
.hmy-vertical-center.hmy-content-wrapper {
	display: inline-flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
}
.p7HMY img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}
.hmy-box-separation .hmy-content-wrapper {
	margin: 5px;
	box-sizing: border-box;
	position: relative;
}
.hmy-overflow {
	overflow: hidden;
}
/*
*************************
  Video-Map Iframe Styles
*************************
*/
.hmy-video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0px;
	overflow: hidden;
}
.hmy-video-wrapper iframe, .hmy-video-wrapper object, .hmy-video-wrapper embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

.hmy-map-wrapper {
	position: relative; 
	padding-bottom: 100%; 
	padding-top: 0px; 
	height: 0px; 
	overflow: hidden; 
	margin-bottom: 20px;
}
.hmy-map-wrapper iframe, .hmy-map-wrapper object, .hmy-map-wrapper embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.hmy-video-wrapper iframe,
.hmy-map-wrapper iframe {
	box-sizing: border-box;
}
.hmy-frame-border iframe {
	border: 1px solid #000 !important;
}
.hmy-frame-rnd iframe {
	border-radius: 5px;
}


/*
**********************************
     Legacy Browser Rules
**********************************
*/
.p7HMY.hmy-legacy {
	overflow: hidden;
	display: block;
}
.p7HMY.hmy-legacy .hmy-section {
	display: block;
	float: left;
	box-sizing: border-box;
	padding: 0px !important;
}
/*
***********************************
        Style Options 
***********************************
*/
.hmy-no-pad.hmy-content {padding: .5px 0px !important;}
.no-pad {padding: 0px !important;}
.hmy-center {text-align: center;}
.hmy-right {text-align: right;}
.hmy-left {text-align: left;}

/*
***********************************************
    No Script Rules... For DW Design View
***********************************************
*/
.p7HMY.hmy-noscript {}


.content-inner {
  max-width: 700px;
  margin: 0 auto;
}

.content-inner.narrow {
  max-width: 520px;
}

.hero-inner {
  max-width: 800px;
}

.value-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
/* =====================================================
   HERO SYSTEM
===================================================== */

.hero-image {
  background-size: cover;
  background-position: center;
  min-height: 80vh;
}

.hero-image-block {
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
}

.hero-image-block.emotion {
  background: url("images/home/room-overview-1.jpg") center/cover no-repeat;
}

.hero-overlay {
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

/* NOTE:
   Removed duplicate hero-image contain rule
   Keeping ONLY cover behavior for consistency
*/


/* =====================================================
   IMAGE ROW BASE SYSTEM
===================================================== */

.image-row-2,
.image-row-3,
.image-row-4,
.image-row-5 {
  display: flex;
  width: 100%;
  gap: 16px;
  flex-wrap: nowrap;
}

/* shared image behavior */
.image-row-2 img,
.image-row-3 img,
.image-row-4 img,
.image-row-5 img {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

/* hover effect (global) */
.image-row-2 img:hover,
.image-row-3 img:hover,
.image-row-4 img:hover,
.image-row-5 img:hover {
  transform: scale(1.02);
}


/* =====================================================
   ROW-SPECIFIC HEIGHT SYSTEM
   (controls visual density only)
===================================================== */

.image-row-2 img {
  height: 340px;
}

.image-row-3 img {
  height: 340px;
}

.image-row-4 img {
  height: 340px;
}

.image-row-5 img {
  height: 340px;
}


/* =====================================================
   OPTIONAL ALTERNATIVE SYSTEM (if needed later)
   NOTE: image-trio + image-card kept isolated
===================================================== */

.image-trio {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.image-card {
  max-width: 300px;
  text-align: center;
}


/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

@media (max-width: 900px) {
  .image-row-3,
  .image-row-4,
  .image-row-5 {
    flex-wrap: wrap;
  }

  .image-row-3 img,
  .image-row-4 img,
  .image-row-5 img {
    width: 48%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .image-row-2 img,
  .image-row-3 img,
  .image-row-4 img,
  .image-row-5 img {
    width: 100%;
    height: auto;
  }
}
.value-item {
  max-width: 260px;
  text-align: center;
}

.overlay-caption {
  color: #fff;
  font-size: 20px;
  padding: 60px 20px;
}

.included-callout h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.included-callout ul {
  margin: 15px 0;
  padding-left: 18px;
}

.included-callout li {
  margin-bottom: 6px;
}

.included-callout p {
  margin-bottom: 10px;
}
.image-row-2 img,
.image-row-3 img,
.image-row-4 img,
.image-row-5 img {
  border-radius: 6px !important;
}
.img-wrap {
  aspect-ratio: 4 / 3;
}
.img-wrap img {
  object-fit: cover;
}

@media (max-width: 1100px) {
  .image-row-5 {
    flex-wrap: wrap;
  }

  .image-row-5 img {
    width: 32%;
    height: 200px;
  }
}

@media (max-width: 800px) {
  .image-row-5 img {
    width: 48%;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .image-row-5 img {
    width: 100%;
    height: auto;
  }
}

/* Tablet adjustment */
@media (max-width: 900px) {
  .image-row-3 img {
    width: 48%;
    height: 240px;
  }
}

/* Mobile fallback */
@media (max-width: 600px) {
  .image-row-3 img {
    width: 100%;
    height: auto;
  }
}

/*
***********************************************
               Media Queries
***********************************************
*/
@media only screen and (min-width: 0px) and (max-width: 1025px) {

}
@media only screen and (min-width: 0px) and (max-width: 768px) {
body {font-size: 95%;}
html {-webkit-text-size-adjust: 100%;}
.p7HMY .hmy-section .p7HMY .hmy-section {flex-basis: 100% !important;}
.p7HMY.hmy-legacy .hmy-section .p7HMY .hmy-section {float: none !important; width: 100% !important;}
}
@media only screen and (min-width: 0px) and (max-width: 600px) {
body {font-size: 90%;}
.p7HMY .hmy-section {flex-basis: 100% !important;}
.p7HMY .hmy-section .hmy-content-wrapper {border-radius: 0px !important; border-left: none !important; border-right: none !important;}
.p7HMY.hmy-legacy .hmy-section {float: none !important; width: 100% !important;}
}
@media (max-width: 900px) {
  .image-row-4 {
    flex-wrap: wrap;
  }

  .image-row-4 img {
    width: 48%;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .image-row-4 img {
    width: 100%;
    height: auto;
  }
}
