@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-Gilroy-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-Gilroy-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-Gilroy-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-Gilroy-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SVN-Gilroy";
  src: url("../fonts/SVN-Gilroy-XBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #b77b13;
  --text: #414042;
  --muted: #55555a;
  --hairline: #d9d9d9;
  --page-width: 1180px;
  --page-height: 1670px;
  --desktop-scale: 1.9831932773;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #eeeeee;
  color: var(--text);
  font-family: "SVN-Gilroy", Arial, sans-serif;
}

.page-shell {
  position: relative;
  width: var(--page-width);
  margin: 0 auto;
  overflow: hidden;
}

.page {
  position: relative;
  width: var(--page-width);
  height: var(--page-height);
  overflow: hidden;
  background: #fbfaf8;
  box-shadow: 0 18px 60px rgba(20, 20, 20, 0.18);
  transform-origin: top left;
}

.page-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 595px;
  height: 842px;
  transform: scale(var(--desktop-scale));
  transform-origin: top left;
}

.hero-image {
  position: absolute;
  inset: 0 auto auto 0;
  width: 595px;
  height: 316px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-image-1{
	display:none;
}
.logo {
  position: absolute;
  top: 26px;
  right: 55px;
  width: 76px;
  height: 21px;
  object-fit: contain;
}

.intro {
  position: absolute;
  left: 30px;
  top: 28px;
  width: 195px;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.intro h1 {
  margin: 0;
  color: var(--text);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.intro h1 span {
  /* display: block; */
  color: var(--gold);
}

.accent-line {
  width: 64px;
  height: 2px;
  margin: 14px 0 24px;
  background: var(--gold);
}

.intro-copy {
  width: 188px;
  margin: 0;
  color: #1f1f22;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.features {
  position: absolute;
  left: 30px;
  top: 302px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: 560px;
  height: 130px;
  background: rgba(251, 250, 248, 0.5);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.feature-card {
  position: relative;
  margin: 0;
  padding: 0 10px 0 12px;
}

.feature-card + .feature-card {
  border-left: 0;
}

.feature-card::before,
.feature-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.feature-card::before {
  left: 0;
  top: 0px;
  bottom: 0px;
  width: 0.5px;
  background: rgba(142,143,147,0.4);
  /* filter: blur(0.45px); */
  /* opacity: 0.78; */
  /* box-shadow: 1px 0 4px rgba(183, 123, 19, 0.12); */
}

.feature-card:first-child::before,
.feature-card::after {
  display: none;
}

.feature-card img {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 0 7px;
}

.feature-card h2 {
  position: absolute;
  left: 57px;
  top: 5px;
  margin: 0;
  color: #151515;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
}

.feature-card p {
  width: 103px;
  margin: 10px 0 0;
  color: #353538;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
}

.room-map {
  position: relative;
  top: 458px;
  width: 100%;
  height: 303px;
  display: block;
}

.footer {
  position: absolute;
  left: 56px;
  right: 55px;
  bottom: 11px;
  height: 22px;
}

.footer-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--hairline);
}

.site {
  position: absolute;
  left: 0;
  top: 13px;
  color: #333438;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}

.page-number {
  position: absolute;
  right: 34px;
  top: 8px;
  color: #4a4a4d;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.page-mark {
  position: absolute;
  right: 0;
  top: 16px;
  width: 23px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    background: #fbfaf8;
  }
  .hero-image-1{
	display:block!important;
}
.hero-image{
	display:none;
}

  .page-shell {
    width: 100%;
    height: auto !important;
    margin: 0;
    overflow: visible;
  }

  .page {
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow: visible;
    box-shadow: none;
    transform: none !important;
  }

  .page-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 24px 20px;
    transform: none;
  }

  .logo {
    top: 24px;
    right: 20px;
    width: 76px;
    height: 21px;
  }

  .intro {
    position: relative;
    order: 1;
    top: auto;
    left: auto;
    width: 100%;
    /* padding-right: 92px; */
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .intro h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .accent-line {
    margin: 12px 0 18px;
  }

  .intro-copy {
    width: min(100%, 100%);
    font-size: 13px;
    line-height: 1.22;
  }

  .hero-image {
    position: relative;
        order: 2;
        width: 100%;
        left: 20px;
        height: auto;
        aspect-ratio: 1190 / 632;
        margin: 24px -20px 0;
        object-fit: unset;
        border-radius: 10px;
        box-shadow: 0 5px 14px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgb(254 235 201) !important;
  }

  .features {
    position: relative;
    order: 3;
    left: auto;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    height: auto;
    margin-top: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0);
    /* border: 1px solid rgba(217, 217, 217, 0.9); */
    border-radius: 8px;
  }

  .features::before,
  .features::after {
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
    filter: blur(0.28px);
    opacity: 0.86;
    box-shadow: 0 0 3px rgba(255, 245, 220, 0.5);
  }

  .features::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-0.5px);
    background: linear-gradient(
      180deg,
      rgba(154, 122, 77, 0),
      rgba(154, 122, 77, 0.12) 10%,
      rgba(154, 122, 77, 0.38) 32%,
      rgba(154, 122, 77, 0.46) 48%,
      rgba(154, 122, 77, 0.46) 52%,
      rgba(154, 122, 77, 0.38) 68%,
      rgba(154, 122, 77, 0.12) 90%,
      rgba(154, 122, 77, 0)
    );
  }

  .features::after {
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    transform: translateY(-0.5px);
    background: linear-gradient(
      90deg,
      rgba(154, 122, 77, 0),
      rgba(154, 122, 77, 0.12) 10%,
      rgba(154, 122, 77, 0.38) 32%,
      rgba(154, 122, 77, 0.46) 48%,
      rgba(154, 122, 77, 0.46) 52%,
      rgba(154, 122, 77, 0.38) 68%,
      rgba(154, 122, 77, 0.12) 90%,
      rgba(154, 122, 77, 0)
    );
  }

  .feature-card,
  .feature-card + .feature-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-content: center;
    align-items: center;
    min-height: 128px;
    padding: 14px 12px 13px;
    border-left: 0;
  }

  .feature-card::before {
    display: none;
  }

  .feature-card:nth-child(odd)::before {
    display: none;
  }

  .feature-card:nth-child(n + 3)::after {
    display: none;
  }

  .feature-card img {
    grid-column: 1;
    grid-row: 1;
    width: 34px;
    height: 34px;
    margin: 0;
  }

  .feature-card h2 {
    position: static;
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .feature-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin: 10px 0 0;
    font-size: 11px;
    line-height: 1.25;
  }

  .room-map {
    position: relative;
    order: 4;
    top: auto;
    width: calc(100% + 12px);
    height: auto;
    margin: 24px -6px 0;
  }

  .footer {
    position: relative;
    order: 5;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 30px;
    margin-top: 28px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 0;
  }

  body {
    background: #ffffff;
  }

  .page-shell,
  .page {
    width: 210mm;
    height: 297mm;
    margin: 0;
    box-shadow: none;
    transform: none !important;
  }

  .page-content {
    transform: scale(1.982);
  }
}
