@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Newsreader:ital,opsz,wght@0,6..72,400;1,6..72,400&display=swap");
:root {
  --navy: #12232d;
  --deep: #09171e;
  --sand: #e7dfd1;
  --paper: #f8f6f1;
  --ink: #182026;
  --rust: #a04f38;
  --line: #c8c1b5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, sans-serif;
}
h1,
h2,
h3 {
  font-family: Newsreader, serif;
  font-weight: 400;
}
a {
  color: inherit;
}
.utility {
  height: 50px;
  padding: 0 6vw;
  background: var(--deep);
  color: white;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.utility span {
  font-weight: 600;
}
.utility small {
  color: #84929a;
}
.utility a {
  margin-left: auto;
  color: white;
}
nav {
  height: 68px;
  padding: 0 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  border-bottom: 1px solid var(--line);
}
nav a {
  text-decoration: none;
  font-size: 0.82rem;
}
.hero {
  min-height: 630px;
  background: var(--sand);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 7vw;
  padding: 75px 7vw;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(3.6rem, 6.8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  margin: 20px 0;
}
.hero h1 i {
  color: var(--rust);
}
.hero-copy > p:not(.kicker) {
  max-width: 610px;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 28px 0;
}
.btn-main {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}
.btn-line {
  margin-left: 26px;
}
.facade {
  height: 470px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.tower {
  width: 84%;
  height: 92%;
  margin: auto;
  background: var(--paper);
  border: 1px solid var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 28px;
  box-shadow: 25px 25px 0 var(--rust);
}
.tower i {
  border: 1px solid var(--line);
  position: relative;
}
.tower i:after {
  content: "";
  position: absolute;
  inset: 22% 32%;
  background: var(--navy);
}
.water {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  height: 13px;
}
.booking {
  padding: 23px 7vw;
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: end;
}
.booking label {
  padding: 0 20px;
  border-right: 1px solid #3f5059;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.62rem;
}
.booking input,
.booking select {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: white;
}
.booking option {
  color: #000;
}
.booking button,
.contact button {
  background: var(--rust);
  color: white;
  border: 0;
  padding: 17px 26px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}
.section {
  padding: 105px 7vw;
}
.statement {
  text-align: center;
  max-width: 1080px;
  margin: auto;
}
.statement h2,
.section-title h2,
.casino h2,
.dining > h2,
.meetings h2,
.responsible h2,
.contact h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1;
}
.statement > p:not(.kicker) {
  font-size: 1.12rem;
  line-height: 1.9;
  color: #596167;
}
.stats {
  margin-top: 48px;
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats span {
  padding: 24px 12px;
  border-right: 1px solid var(--line);
}
.stats span:last-child {
  border: 0;
}
.stats b {
  display: block;
  font-family: Newsreader, serif;
  font-size: 1.8rem;
}
.sand {
  background: var(--sand);
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}
.section-title > p {
  max-width: 440px;
  color: #586064;
  line-height: 1.75;
}
.room-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid #b9ae9c;
}
.room-list article {
  padding: 38px 34px;
  min-height: 310px;
  border-right: 1px solid #b9ae9c;
  display: flex;
  flex-direction: column;
}
.room-list article:last-child {
  border: 0;
}
.room-list small,
.dining-grid small {
  color: var(--rust);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.room-list h3,
.dining-grid h3 {
  font-size: 2.1rem;
  margin: 42px 0 18px;
}
.room-list p,
.dining-grid p {
  line-height: 1.7;
  color: #5d6468;
}
.room-list b,
.dining-grid b {
  margin-top: auto;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.casino {
  background: var(--navy);
  color: white;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
}
.casino .kicker {
  color: #d9927f;
}
.casino-intro > p:not(.kicker):not(.hours) {
  color: #b8c1c5;
  line-height: 1.8;
}
.hours {
  border-left: 2px solid var(--rust);
  padding-left: 20px;
  margin-top: 35px;
  line-height: 1.8;
  color: #9eabb1;
}
.casino-menu article {
  padding: 20px 0;
  border-top: 1px solid #40515a;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 20px;
}
.casino-menu > article > span {
  color: #d9927f;
  font-size: 0.7rem;
}
.casino-menu h3 {
  font-size: 1.35rem;
  margin: 0;
}
.casino-menu p {
  color: #adb8bd;
  margin-bottom: 0;
  line-height: 1.6;
}
.casino-menu small {
  text-transform: uppercase;
  color: #87979e;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
}
.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}
.dining-grid article {
  border: 1px solid var(--line);
  padding: 35px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.meetings {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10vw;
  align-items: end;
}
.meetings > div:last-child {
  border-left: 1px solid #b8ad9b;
  padding-left: 40px;
  line-height: 1.8;
}
.responsible {
  display: grid;
  grid-template-columns: 145px 1.4fr 0.8fr;
  gap: 55px;
}
.responsible > span {
  width: 120px;
  height: 120px;
  border: 1px solid var(--rust);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Newsreader, serif;
  font-size: 2.5rem;
  color: var(--rust);
}
.responsible p {
  color: #5d6468;
  line-height: 1.75;
}
.responsible a {
  display: block;
  margin-top: 10px;
}
.contact {
  background: var(--sand);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact form {
  display: grid;
  gap: 15px;
}
.contact input,
.contact select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #aea493;
  padding: 16px;
}
footer {
  background: var(--deep);
  color: white;
  padding: 58px 7vw 26px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 35px;
}
footer strong {
  font-family: Newsreader, serif;
  font-size: 1.8rem;
  font-weight: 400;
}
footer a {
  display: block;
  color: #92a0a7;
  margin-bottom: 9px;
}
footer > b {
  width: 72px;
  height: 72px;
  border: 1px solid #68767d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Newsreader, serif;
  font-size: 1.8rem;
}
.legal {
  grid-column: 1/-1;
  padding-top: 22px;
  border-top: 1px solid #33434b;
  color: #7e8d94;
  font-size: 0.7rem;
  line-height: 1.7;
}
.gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 14, 18, 0.96);
  display: grid;
  place-items: center;
  padding: 20px;
}
.gate-card {
  width: min(520px, 100%);
  background: var(--sand);
  padding: 50px;
  text-align: center;
  border-top: 5px solid var(--rust);
}
.gate-card > span {
  width: 84px;
  height: 84px;
  border: 1px solid var(--rust);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 23px;
  font-family: Newsreader, serif;
  font-size: 2rem;
  color: var(--rust);
}
.gate-card h2 {
  font-size: 2.5rem;
}
.gate-card p {
  color: #5d6468;
  line-height: 1.7;
}
.gate-card button {
  display: block;
  width: 100%;
  padding: 16px;
  border: 0;
  background: var(--navy);
  color: white;
  margin: 25px 0 14px;
}
.gate-card a {
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  nav {
    height: auto;
    padding: 18px;
    gap: 18px;
    flex-wrap: wrap;
  }
  .hero,
  .casino,
  .contact {
    grid-template-columns: 1fr;
  }
  .facade {
    height: 330px;
  }
  .booking {
    grid-template-columns: 1fr 1fr;
  }
  .booking button {
    grid-column: 1/-1;
  }
  .section-title {
    display: block;
  }
  .room-list,
  .dining-grid {
    grid-template-columns: 1fr;
  }
  .room-list article {
    border-right: 0;
    border-bottom: 1px solid #b9ae9c;
  }
  .amenities {
    grid-template-columns: 1fr 1fr;
  }
  .responsible {
    grid-template-columns: 120px 1fr;
  }
  .responsible > div:last-child {
    grid-column: 2;
  }
}
@media (max-width: 600px) {
  .utility small {
    display: none;
  }
  .hero {
    padding-top: 58px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .btn-line {
    display: block;
    margin: 24px 0;
  }
  .facade {
    height: 250px;
  }
  .tower {
    padding: 16px;
    gap: 8px;
  }
  .booking,
  .stats,
  .meetings,
  .responsible,
  .contact {
    grid-template-columns: 1fr;
  }
  .booking label {
    padding: 12px;
    border-bottom: 1px solid #3f5059;
  }
  .section {
    padding: 75px 6vw;
  }
  .stats span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .meetings > div:last-child {
    border-left: 0;
    border-top: 1px solid #b8ad9b;
    padding: 25px 0;
  }
  .responsible > div:last-child {
    grid-column: auto;
  }
  footer {
    grid-template-columns: 1fr auto;
  }
  .gate-card {
    padding: 34px 23px;
  }
}
