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

body {
  background: #ffffff;
  color: #111;
  font-family: 'Gotham Book','Gotham','Century Gothic',Arial,Helvetica,sans-serif;
}

.container {
  width: 1120px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

.slider,
.video-wrap {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.slider img,
.slider video,
.video-wrap video,
.video-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.about {
  min-height: 520px;
  padding: 70px 0 40px;
  display: grid;
  grid-template-columns: 340px 1fr 250px;
  gap: 45px;
  align-items: start;
}

.about-left img {
  width: 100%;
  display: block;
}

.about-text {
  text-align: left;
  padding-top: 10px;
  padding-left: 40px;
}

.about-text h1,
.about-text h2 {
  font-family: 'Bauer','Bauer Bodoni',Georgia,'Times New Roman',serif;
  font-weight: 300;
  line-height: 0.9;
  color: #171717;
}

.about-text h1 {
  font-size: 76px;
}

.about-text h2 {
  font-size: 70px;
  margin-top: 8px;
}

.lead {
  font-family: 'Bauer','Bauer Bodoni',Georgia,'Times New Roman',serif;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 10px;
}

.line {
  width: 80px;
  height: 1px;
  background: #777;
  margin: 22px 0 18px;
}

.desc {
  text-align: left;
  font-size: 15px;
  line-height: 1.65;
  margin-top: 22px;
  color: #333;
}

.desc-wide {
  grid-column: 2 / 4;
  padding-left: 40px;
  padding-right: 0;
  margin-top: -160px;
}

.about-right {
  padding-top: 35px;
  position: relative;
}

.about-right > img:first-child {
  width: 100%;
  display: block;
}

.about-right-badge {
  width: 120px;
  display: block;
  margin: -260px auto 0;
}

.interior {
  text-align: center;
  padding: 45px 0 80px;
}

.interior h2 {
  font-family: 'Bauer','Bauer Bodoni',Georgia,'Times New Roman',serif;
  font-size: 43px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #111;
}

.interior-single {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
  line-height: 0;
}

.interior-image-wrap {
  max-width: 1000px;
  margin: 0 auto;
  line-height: 0;
}

.building {
  width: 100%;
  line-height: 0;
}

.building img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  margin-top: 60px;
}

.cards {
  padding: 90px 0 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}

.card h3 {
  font-size: 15px;
  margin-bottom: 18px;
}

.card {
  background: #f2f2f2;
  padding: 0 0 25px;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 22px 28px 0;
}

.card-body h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 13px;
  line-height: 1.5;
  color: #333;
}

.interior-caption {
  display: block;
  background: #f2f2f2;
  padding: 18px 28px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.interior-caption strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #111;
}

.gallery-click {
  position: relative;
  display: block;
  line-height: 0;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.gallery-click img {
  transition: transform .35s ease, filter .35s ease;
}

.gallery-click:hover img {
  transform: scale(1.025);
}

.gallery-click span {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  background: rgba(255,255,255,.92);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid rgba(17,17,17,.35);
}

.gallery-click-wide span {
  right: 42px;
  bottom: 42px;
}

.video-thumb {
  position: relative;
  width: 100%;
  height: 260px;
  border: 0;
  padding: 0;
  margin: 0;
  display: block;
  cursor: pointer;
  background: #111;
  overflow: hidden;
  line-height: 0;
}

.video-thumb video,
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.86);
  color: #111;
  font-size: 21px;
  line-height: 1;
  padding-left: 4px;
  transition: transform .2s ease, background .2s ease;
}

.video-thumb:hover .play-mark {
  transform: translate(-50%,-50%) scale(1.06);
  background: #fff;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal-box {
  position: relative;
  width: min(1100px,96vw);
  background: #000;
  box-shadow: 0 20px 80px rgba(0,0,0,.45);
}

.video-modal-box video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 82vh;
}

.video-modal-close {
  position: absolute;
  right: -14px;
  top: -14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .container {
    width: 100%;
    max-width: calc(100% - 24px);
  }

  .slider img,
  .slider video {
    width: 100%;
    height: auto;
  }

  .about {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: auto;
    padding: 42px 0 35px;
    text-align: center;
  }

  .about-left,
  .about-text,
  .about-right,
  .desc-wide {
    width: 100%;
    padding: 0;
    margin: 0;
    grid-column: auto;
  }

  .about-left img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-text {
    text-align: center;
    padding: 0;
  }

  .about-text h1 {
    font-size: 56px;
    line-height: .9;
  }

  .about-text h2 {
    font-size: 52px;
    line-height: .9;
    margin-top: 10px;
  }

  .lead {
    font-size: 18px;
    line-height: 1.25;
    margin-top: 10px;
  }

  .line {
    margin: 18px auto;
  }

  .desc-wide {
    margin-top: 0 !important;
    padding: 0 !important;
  }

  .desc {
    text-align: center;
    font-size: 14px;
    line-height: 1.65;
    margin-top: 15px;
  }

  .about-right {
    padding-top: 0;
  }

  .about-right > img:first-child {
    width: 100%;
    max-width: 300px;
    margin: 0 auto !important;
  }

  .about-right-badge {
    width: 90px;
    margin: 14px auto 0;
  }

  .interior {
    padding: 38px 0 55px;
  }

  .interior h2 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .building img {
    height: auto;
    margin-top: 30px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0 70px;
  }

  .card h3 {
    padding: 18px 18px 0;
    margin-bottom: 15px;
  }

  .card img,
  .video-thumb {
    height: 230px;
  }

  .video-thumb video,
  .video-thumb img {
    height: 100%;
  }

  .gallery-click-wide span {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 560px) {
  .container {
    max-width: calc(100% - 24px);
  }

  .about {
    padding: 35px 0 30px;
    gap: 24px;
  }

  .about-text h1 {
    font-size: 48px;
  }

  .about-text h2 {
    font-size: 46px;
  }

  .lead {
    font-size: 17px;
  }

  .desc {
    font-size: 14px;
  }

  .interior h2 {
    font-size: 27px;
  }

  .interior-caption {
    padding: 15px 18px;
    font-size: 12px;
  }

  .card-body {
    padding: 18px 20px 0;
  }

  .card img,
  .video-thumb {
    height: 210px;
  }

  .gallery-click span {
    right: 14px;
    bottom: 14px;
    height: 32px;
    padding: 0 14px;
  }

  .video-modal {
    padding: 16px;
  }

  .video-modal-close {
    right: 8px;
    top: 8px;
  }
}