@import url("https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600&family=Source+Sans+3:wght@300;400;600&display=swap");
:root {
  --green: #17372d;
  --dark: #202321;
  --stone: #ece7dd;
  --paper: #f8f5ef;
  --copper: #a8633e;
  --sage: #9aa99f;
  --line: #cfc9be;
  --serif: "Crimson Pro", serif;
  --sans: "Source Sans 3", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  line-height: 1.7;
}
.wrap {
  width: min(100% - 48px, 1400px);
  margin: auto;
  padding: 0;
}
.pad {
  padding: clamp(80px, 9vw, 140px) 0;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--copper);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
}
h2 {
  font-size: clamp(3.2rem, 5.7vw, 6rem);
}
.btn-main,
.btn-outline,
.book-btn {
  display: inline-flex;
  padding: 14px 24px;
  border: 1px solid var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.62rem;
  font-weight: 600;
}
.btn-main,
.book-btn {
  background: var(--green);
  color: #fff;
}
.btn-main:hover,
.book-btn:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
}
.link {
  display: inline-block;
  border-bottom: 1px solid;
  padding: 10px 0;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.info-bar {
  height: 30px;
  background: var(--green);
  color: #fff;
  font-size: 0.51rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.info-bar > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header {
  background: rgba(248, 245, 239, 0.96);
  border-bottom: 1px solid var(--line);
}
.navbar {
  min-height: 82px;
}
.navbar-brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  letter-spacing: 0.09em;
  line-height: 1;
}
.navbar-brand b,
.footer-brand b {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  background: var(--green);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.1rem;
}
.navbar-brand small,
.footer-brand small {
  display: block;
  font-size: 0.47rem;
  letter-spacing: 0.16em;
  margin-top: 6px;
}
.nav-link {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 8px;
}
.book-btn {
  margin-left: 12px;
  padding: 11px 18px;
}
.hero {
  background: var(--stone);
}
.hero-grid {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 8vw;
  padding-block: 60px;
}
.hero h1 {
  font-size: clamp(4.7rem, 8vw, 8.4rem);
  margin: 20px 0 30px;
}
.intro {
  font-family: var(--serif);
  font-size: 1.35rem;
  max-width: 600px;
}
.actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}
.lake-art {
  height: 610px;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.hotel-block {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 12%;
  height: 58%;
  background: var(--paper);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 75px 35px 30px;
  border-bottom: 12px solid var(--copper);
}
.hotel-block > span {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
}
.hotel-block i {
  background: var(--green);
}
.lake-lines {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: repeating-linear-gradient(
    0deg,
    var(--green) 0 8px,
    var(--sage) 9px 10px
  );
}
.sun {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--copper);
  right: 4%;
  top: 5%;
}
.booking {
  background: var(--copper);
  padding: 28px 0;
}
.booking form {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) auto;
  gap: 28px;
  align-items: end;
}
.booking form > div {
  display: flex;
  flex-direction: column;
}
.booking small,
.booking label {
  font-size: 0.53rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.booking strong {
  font-family: var(--serif);
  font-size: 1.35rem;
}
.booking input,
.booking select {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #55321f;
  padding: 8px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}
.split h2 {
  margin-top: 15px;
}
.lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.3vw, 2.3rem);
}
.hotel {
  background: var(--stone);
}
.heading {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 60px;
  align-items: end;
  margin-bottom: 65px;
}
.heading h2 {
  margin: 15px 0 0;
}
.heading > p {
  border-left: 1px solid var(--line);
  padding-left: 25px;
}
.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rooms article {
  background: var(--paper);
  border: 1px solid var(--line);
}
.visual {
  height: 300px;
  background: var(--green);
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 0.58rem;
}
.visual:before {
  content: "";
  position: absolute;
  width: 55%;
  height: 62%;
  bottom: 0;
  background: var(--stone);
  border-top: 10px solid var(--copper);
}
.visual span {
  z-index: 2;
}
.v2 {
  background: var(--sage);
}
.v3 {
  background: var(--copper);
}
.rooms article > div:last-child {
  padding: 30px;
}
.rooms small {
  font-size: 0.52rem;
  text-transform: uppercase;
}
.rooms h3 {
  font-size: 2rem;
  margin: 12px 0;
}
.rooms p {
  font-size: 0.78rem;
}
.rooms a {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 22px;
  font-size: 0.58rem;
  text-transform: uppercase;
}
.casino {
  background: var(--green);
  color: #fff;
}
.casino-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
}
.casino h2 {
  margin: 15px 0 28px;
}
.casino-grid > div:first-child > p:not(.kicker) {
  color: #bdc9c4;
}
.casino-meta {
  display: flex;
  gap: 28px;
  margin-top: 35px;
}
.casino-meta span {
  display: flex;
  flex-direction: column;
  font-size: 0.52rem;
  text-transform: uppercase;
}
.casino-meta b {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: #d28a61;
}
.games {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.games article {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.games > article > b {
  color: #d28a61;
  font-size: 0.6rem;
}
.games h3 {
  font-size: 1.8rem;
  margin: 0;
}
.games p {
  font-size: 0.77rem;
  color: #b9c6c1;
  margin: 6px 0;
}
.games > article > span {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: #d28a61;
}
.venues {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.venues article {
  min-height: 340px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.venues article:last-child {
  border: 0;
}
.venues small {
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  color: var(--copper);
}
.venues h3 {
  font-size: 2.2rem;
}
.venues p {
  font-size: 0.8rem;
}
.venues b {
  margin-top: auto;
  font-size: 0.55rem;
  line-height: 1.8;
}
.meet {
  background: var(--stone);
}
.event-art {
  height: 470px;
  background: var(--copper);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.event-art span {
  font-family: var(--serif);
  font-size: 4rem;
  color: #fff;
  z-index: 2;
}
.event-art i {
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid var(--paper);
  border-radius: 50%;
}
.meet ul {
  columns: 2;
  padding-left: 18px;
}
.meet li {
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.sauna {
  background: var(--paper);
}
.sauna-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: center;
}
.sauna-box {
  height: 350px;
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 15px solid var(--copper);
}
.sauna-box span,
.sauna-box small {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
}
.sauna-box b {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 500;
}
.responsible {
  background: var(--sage);
}
.responsible-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 9vw;
  align-items: center;
}
.badge {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.badge b {
  font-family: var(--serif);
  font-size: 5rem;
}
.badge span {
  font-size: 0.5rem;
  letter-spacing: 0.12em;
}
.notice-box {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 25px;
  border: 1px solid var(--green);
  padding: 23px;
  margin-top: 28px;
  font-size: 0.72rem;
}
.footer {
  background: var(--dark);
  color: #fff;
  padding: 70px 0 28px;
}
.footer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 35px;
  border-bottom: 1px solid #555;
  font-size: 0.65rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.67rem;
}
.footer-grid strong {
  color: #c77c51;
  font-size: 0.53rem;
  text-transform: uppercase;
}
.footer-badge {
  width: 140px;
  height: 140px;
  border: 1px solid #c77c51;
  border-radius: 50%;
  align-items: center !important;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.7rem;
}
.footer-badge small {
  font-family: var(--sans);
  font-size: 0.45rem;
  text-transform: uppercase;
}
.legal {
  border-top: 1px solid #555;
  padding-top: 24px;
  color: #8e928f;
  font-size: 0.58rem;
}
.copyright {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  color: #707471;
  font-size: 0.5rem;
  text-transform: uppercase;
}
.age-gate {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(23, 55, 45, 0.97);
  display: grid;
  place-items: center;
  padding: 20px;
  transition: 0.3s;
}
.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.age-card {
  width: min(100%, 580px);
  background: var(--paper);
  padding: 50px;
  border-top: 8px solid var(--copper);
}
.age {
  float: right;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 1px solid;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2rem;
}
.age-card h1 {
  font-size: 3.5rem;
}
.age-card > div {
  display: flex;
  gap: 12px;
  margin: 25px 0;
}
.age-card small {
  font-size: 0.62rem;
}
@media (max-width: 992px) {
  .navbar-collapse {
    padding: 20px 0;
  }
  .hero-grid,
  .split,
  .casino-grid,
  .sauna-grid {
    grid-template-columns: 1fr;
  }
  .booking form {
    grid-template-columns: repeat(3, 1fr);
  }
  .booking form > div {
    grid-column: 1/-1;
  }
  .heading {
    grid-template-columns: 1fr;
  }
  .heading > p {
    border: 0;
    padding: 0;
  }
  .rooms {
    grid-template-columns: 1fr;
  }
  .rooms article {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .venues {
    grid-template-columns: 1fr;
  }
  .venues article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .responsible-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .wrap {
    width: min(100% - 28px, 1400px);
  }
  .hero h1 {
    font-size: 4rem;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .lake-art {
    height: 470px;
  }
  .booking form {
    grid-template-columns: 1fr;
  }
  .rooms article {
    display: block;
  }
  .casino-meta {
    justify-content: space-between;
  }
  .responsible-grid {
    grid-template-columns: 1fr;
  }
  .notice-box {
    grid-template-columns: 1fr;
  }
  .footer-head {
    display: block;
  }
  .footer-head > span {
    display: block;
    margin-top: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .age-card > div {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 3.3rem;
  }
  .lake-art {
    height: 380px;
  }
  .hotel-block {
    padding-inline: 18px;
    gap: 9px;
  }
  .casino-meta {
    flex-wrap: wrap;
  }
  .event-art {
    height: 370px;
  }
  .event-art span {
    font-size: 3rem;
  }
  .badge {
    width: 200px;
    height: 200px;
  }
  .age-card {
    padding: 35px 25px;
  }
  .age-card h1 {
    font-size: 2.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
