@import url("https://fonts.googleapis.com/css2?family=Italiana&family=Manrope:wght@300;400;500;600&display=swap");
:root {
  --ivory: #f4f0e8;
  --sand: #e6ded1;
  --ink: #171716;
  --wine: #4b1721;
  --gold: #b69759;
  --stone: #8c857c;
  --line: rgba(23, 23, 22, 0.18);
  --serif: "Italiana", serif;
  --sans: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  line-height: 1.75;
}
.page-width {
  width: min(100% - 48px, 1440px);
  padding: 0;
  margin: auto;
}
.section-space {
  padding: clamp(90px, 11vw, 165px) 0;
}
.overline {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.62rem;
  font-weight: 600;
}
.roman {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
}
h2 {
  font-size: clamp(3.4rem, 6.4vw, 7rem);
  letter-spacing: -0.04em;
}
.button {
  display: inline-flex;
  justify-content: center;
  padding: 15px 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.61rem;
  font-weight: 600;
}
.gold {
  background: var(--gold);
  color: #fff;
}
.gold:hover {
  background: #96783f;
  color: #fff;
}
.outline {
  border-color: currentColor;
}
.dark {
  background: var(--ink);
  color: #fff;
}
.underlined {
  display: inline-flex;
  gap: 40px;
  padding: 13px 0;
  border-bottom: 1px solid;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.61rem;
}
.notice {
  height: 31px;
  background: var(--wine);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.site-header {
  background: rgba(244, 240, 232, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  min-height: 84px;
}
.navbar-brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.84rem;
  letter-spacing: 0.11em;
  line-height: 1;
}
.navbar-brand small,
.footer-brand small {
  display: block;
  font-size: 0.48rem;
  letter-spacing: 0.2em;
  margin-top: 6px;
}
.crest {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50% 50% 45% 45%;
  font-family: var(--serif);
  color: var(--gold);
}
.nav-link {
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin: 0 8px;
}
.nav-button {
  padding: 12px 22px;
}
.hero {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero-layout {
  min-height: calc(100vh - 115px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  padding-block: 70px;
}
.hero-copy {
  max-width: 830px;
}
.hero h1 {
  font-size: clamp(5rem, 9.7vw, 10.5rem);
  letter-spacing: -0.06em;
  margin: 24px 0 35px;
}
.hero h1 em {
  color: var(--gold);
}
.hero-lead {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
  max-width: 650px;
  color: #d5d0c8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 38px 0 58px;
}
.hero-details {
  display: flex;
  gap: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
}
.hero-details div {
  display: flex;
  flex-direction: column;
}
.hero-details small {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.51rem;
  color: #8d8a85;
}
.hero-details strong {
  font-family: var(--serif);
  font-weight: 400;
}
.architecture {
  position: relative;
  min-height: 650px;
}
.main-arch {
  position: absolute;
  width: min(38vw, 510px);
  height: 610px;
  right: 3%;
  bottom: 0;
  background: var(--wine);
  border-radius: 255px 255px 8px 8px;
  padding: 45px;
}
.inner-arch {
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  border-radius: 220px 220px 4px 4px;
  display: grid;
  place-items: center;
  position: relative;
}
.inner-arch:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(182, 151, 89, 0.45);
  border-radius: 50%;
}
.inner-arch > span {
  font-family: var(--serif);
  font-size: 7rem;
  color: var(--gold);
  z-index: 1;
}
.inner-arch small {
  position: absolute;
  right: 15px;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  font-size: 0.5rem;
}
.gold-orbit {
  position: absolute;
  right: -1%;
  top: 5%;
  width: 105px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2rem;
  box-shadow:
    0 0 0 12px var(--ink),
    0 0 0 13px var(--gold);
}
.room-key {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 145px;
  height: 225px;
  background: var(--sand);
  color: var(--ink);
  border-radius: 75px 75px 4px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 10px 10px var(--gold);
}
.room-key small,
.room-key span {
  font-size: 0.49rem;
  letter-spacing: 0.15em;
}
.room-key strong {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
}
.hero-footer {
  height: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.55rem;
}
.hero-footer i {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.reservation {
  background: var(--wine);
  color: #fff;
  padding: 30px 0;
}
.reservation form {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) auto;
  gap: 30px;
  align-items: end;
}
.reservation form > div p {
  margin: 0;
}
.reservation form > div strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}
.reservation label {
  font-size: 0.53rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.reservation input,
.reservation select {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 8px 0;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0;
}
.reservation option {
  color: var(--ink);
}
.two-cols,
.casino-layout,
.dining-layout,
.responsible-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: center;
}
.large-copy {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}
.small-copy {
  font-family: var(--sans);
  font-size: 0.87rem;
  margin-top: 30px;
}
.hotel {
  background: var(--sand);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}
.section-head h2 {
  margin-bottom: 0;
}
.section-head > p {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.room-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 220px 220px 8px 8px;
  overflow: hidden;
}
.room-art {
  position: relative;
  height: 440px;
  background: var(--stone);
  overflow: hidden;
}
.room-art > span {
  position: absolute;
  z-index: 2;
  left: 34px;
  top: 28px;
  font-family: var(--serif);
  font-size: 3rem;
  color: #fff;
}
.room-art i {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 0;
  height: 75%;
  background: var(--ink);
  border-radius: 180px 180px 0 0;
  border: 18px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
}
.room-art i:after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 0;
  height: 55%;
  background: var(--wine);
  border-radius: 120px 120px 0 0;
}
.art-two {
  background: var(--wine);
}
.art-two i {
  background: var(--gold);
}
.art-two i:after {
  background: var(--ink);
}
.art-three {
  background: var(--gold);
}
.art-three i:after {
  background: var(--stone);
}
.room-info {
  padding: 36px;
}
.room-info small,
.games small {
  font-size: 0.53rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.room-info h3 {
  font-size: 2.2rem;
  margin: 15px 0;
}
.room-info p {
  font-size: 0.81rem;
}
.room-info a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.56rem;
}
.casino {
  background: var(--wine);
  color: #fff;
}
.casino-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}
.casino-intro {
  position: sticky;
  top: 150px;
}
.casino-intro > p:not(.roman):not(.overline) {
  color: #d2c1c4;
}
.casino-seal {
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.casino-seal span {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold);
}
.casino-seal small {
  text-transform: uppercase;
  font-size: 0.48rem;
  letter-spacing: 0.13em;
}
.games {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.games article {
  display: grid;
  grid-template-columns: 45px 1fr 55px;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.games > article > span {
  font-family: var(--serif);
  color: var(--gold);
}
.games h3 {
  font-size: 2.3rem;
  margin: 8px 0;
}
.games p {
  font-size: 0.79rem;
  color: #d2c1c4;
  margin: 0;
}
.games b {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
}
.dining-layout {
  grid-template-columns: 0.9fr 1.1fr;
}
.table-arch {
  width: min(38vw, 470px);
  height: 550px;
  margin: auto;
  background: var(--ink);
  border: 35px solid var(--gold);
  border-radius: 240px 240px 5px 5px;
  display: grid;
  place-items: center;
}
.table-arch span {
  font-family: var(--serif);
  font-size: 9rem;
  color: var(--gold);
}
.dining-art {
  text-align: center;
}
.dining-art p {
  font-family: var(--serif);
  font-size: 1.4rem;
}
.venue {
  display: grid;
  grid-template-columns: 38px 1fr 65px;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.venue:last-child {
  border-bottom: 1px solid var(--line);
}
.venue > span {
  font-family: var(--serif);
  color: var(--gold);
}
.venue h3 {
  font-size: 1.8rem;
  margin: 0 0 7px;
}
.venue p {
  font-size: 0.78rem;
  margin: 0;
}
.venue small {
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.48rem;
}
.experiences {
  background: var(--ink);
  color: #fff;
  border-radius: 100px 100px 0 0;
}
.experiences .section-head > p {
  border-color: rgba(255, 255, 255, 0.2);
  color: #aaa49d;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 150px 150px 8px 8px;
  overflow: hidden;
}
.experience-grid article {
  min-height: 370px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.experience-grid article:last-child {
  border: 0;
}
.experience-grid span {
  font-family: var(--serif);
  color: var(--gold);
  margin-bottom: auto;
}
.experience-grid h3 {
  font-size: 1.9rem;
}
.experience-grid p {
  font-size: 0.76rem;
  color: #aaa49d;
}
.responsible {
  background: var(--sand);
}
.responsible-layout {
  grid-template-columns: 0.75fr 1.25fr;
}
.responsible-emblem {
  width: min(34vw, 410px);
  aspect-ratio: 1;
  border: 1px solid var(--wine);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 22px 22px var(--wine);
}
.responsible-emblem span {
  font-family: var(--serif);
  font-size: 7rem;
  color: var(--wine);
}
.responsible-emblem small {
  font-size: 0.49rem;
  letter-spacing: 0.17em;
}
.support {
  border: 1px solid var(--wine);
  border-radius: 40px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 25px;
  margin-top: 30px;
  font-size: 0.72rem;
}
.footer {
  background: var(--ink);
  color: #fff;
  padding: 100px 0 30px;
}
.footer-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-heading h2 {
  text-align: right;
  color: var(--gold);
  margin: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  padding: 50px 0;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.68rem;
}
.footer-grid strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.53rem;
}
.footer-grid span {
  color: #918d87;
}
.footer-age {
  width: 160px;
  height: 160px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  align-items: center !important;
  justify-content: center;
}
.footer-age span {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: var(--gold);
}
.legal {
  font-size: 0.6rem;
  color: #7f7b76;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 28px;
  max-width: 1200px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.5rem;
  color: #625f5b;
}
.age-gate {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(23, 23, 22, 0.97);
  display: grid;
  place-items: center;
  padding: 22px;
  transition: 0.3s;
}
.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.gate-panel {
  width: min(100%, 640px);
  background: var(--ivory);
  padding: clamp(38px, 6vw, 70px);
  border: 1px solid var(--gold);
  border-radius: 250px 250px 8px 8px;
  text-align: center;
}
.age-medallion {
  width: 95px;
  aspect-ratio: 1;
  border: 1px solid var(--wine);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--wine);
}
.gate-panel h1 {
  font-size: clamp(3rem, 6vw, 5.3rem);
  margin: 15px 0;
}
.gate-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
}
.gate-panel small {
  font-size: 0.63rem;
  color: #706b65;
}
@media (max-width: 1100px) {
  .reservation form {
    grid-template-columns: repeat(3, 1fr);
  }
  .reservation form > div {
    grid-column: 1/-1;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .navbar-collapse {
    padding: 20px 0;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .architecture {
    min-height: 640px;
  }
  .main-arch {
    width: min(75vw, 500px);
    right: 10%;
  }
  .two-cols,
  .casino-layout,
  .dining-layout,
  .responsible-layout {
    grid-template-columns: 1fr;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .section-head > p {
    border: 0;
    padding: 0;
  }
  .room-grid {
    grid-template-columns: 1fr;
  }
  .room-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 220px 8px 8px 220px;
  }
  .casino-intro {
    position: static;
  }
  .casino-seal {
    margin-bottom: 55px;
  }
  .table-arch {
    width: min(70vw, 450px);
  }
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .responsible-emblem {
    width: min(65vw, 380px);
    margin-bottom: 45px;
  }
  .footer-heading {
    display: block;
  }
  .footer-heading h2 {
    text-align: left;
    margin-top: 55px;
  }
}
@media (max-width: 768px) {
  .page-width {
    width: min(100% - 28px, 1440px);
  }
  .notice {
    gap: 14px;
    font-size: 0.44rem;
  }
  .hero h1 {
    font-size: 4.25rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-details {
    gap: 20px;
  }
  .architecture {
    min-height: 510px;
  }
  .main-arch {
    height: 490px;
    right: 2%;
    padding: 28px;
  }
  .gold-orbit {
    width: 78px;
  }
  .room-key {
    width: 110px;
    height: 170px;
  }
  .reservation form {
    grid-template-columns: 1fr;
  }
  .room-card {
    display: block;
    border-radius: 180px 180px 8px 8px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    border-radius: 80px 80px 8px 8px;
  }
  .experience-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .support {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .gate-actions {
    flex-direction: column;
  }
  .gate-panel {
    border-radius: 120px 120px 8px 8px;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 3.45rem;
  }
  .architecture {
    min-height: 430px;
  }
  .main-arch {
    height: 420px;
    width: 300px;
  }
  .room-key {
    display: none;
  }
  .hero-footer span:last-child,
  .hero-footer i:last-of-type {
    display: none;
  }
  .room-art {
    height: 340px;
  }
  .table-arch {
    height: 370px;
  }
  .responsible-emblem span {
    font-size: 5rem;
  }
  .gate-panel h1 {
    font-size: 2.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
