:root {
  --bg: #f4efe6;
  --paper: #fffaf1;
  --paper-2: #efe2cf;
  --ink: #17120f;
  --muted: #746a5f;
  --line: rgba(23, 18, 15, 0.14);

  --red: #8f1628;
  --red-dark: #4d0b18;
  --gold: #c99a42;
  --gold-soft: #ead3a2;
  --green: #18382f;
  --cream: #fff4dd;

  --shadow: 0 28px 80px rgba(23, 18, 15, 0.16);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 154, 66, 0.2), transparent 34%),
    linear-gradient(180deg, var(--bg), #fff);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 38px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), var(--ink), var(--gold));
  color: white;
  box-shadow: 0 15px 34px rgba(143, 22, 40, 0.26);
}

.logo small {
  display: block;
  margin-top: -2px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #3a3029;
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover,
.nav a.active {
  background: rgba(201, 154, 66, 0.18);
  color: var(--red);
}

.nav-button {
  background: var(--ink) !important;
  color: white !important;
}

.menu-btn {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  padding: 10px;
  cursor: pointer;
}

.menu-btn i {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 68px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(90deg, rgba(23, 18, 15, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(23, 18, 15, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 62px;
  align-items: center;
}

.kicker {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 20px 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-text,
.page-copy p,
.section-head p,
.split-grid p,
.final-cta p,
.contact-info p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 950;
}

.btn-main {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--ink));
  box-shadow: 0 18px 42px rgba(143, 22, 40, 0.24);
}

.btn-soft {
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid var(--line);
}

.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-tags span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
}

.center-chip {
  width: 340px;
  height: 340px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--paper) 0 42%, transparent 43%),
    conic-gradient(from 110deg, var(--red), var(--ink), var(--gold), var(--green), var(--red));
  box-shadow: var(--shadow);
}

.center-chip span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.1em;
}

.center-chip p {
  margin: -105px 0 0;
  max-width: 120px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.symbol {
  position: absolute;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--red);
  font-size: 30px;
  border: 8px dashed rgba(201, 154, 66, 0.42);
  box-shadow: 0 18px 40px rgba(23, 18, 15, 0.18);
}

.s1 { top: 50px; left: 120px; }
.s2 { right: 54px; top: 155px; }
.s3 { bottom: 80px; right: 138px; }
.s4 { bottom: 140px; left: 54px; }

.hotel-card {
  position: absolute;
  z-index: 4;
  width: 250px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(23, 18, 15, 0.12);
}

.hotel-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hotel-card b {
  display: block;
  margin-top: 8px;
  line-height: 1.25;
}

.card-one {
  top: 30px;
  left: 0;
}

.card-two {
  right: 0;
  bottom: 38px;
}

.quick-panel {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.quick-grid div {
  padding: 10px 14px;
}

.quick-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quick-grid strong {
  display: block;
  margin-top: 3px;
}

.quick-grid a {
  display: inline-flex;
  justify-content: center;
  padding: 15px 20px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 950;
}

.section {
  padding: 92px 0;
}

.pale {
  background: var(--paper-2);
}

.section-head {
  max-width: 880px;
  margin-bottom: 36px;
}

.section-head h2,
.split-grid h2,
.final-cta h2,
.contact-info h2,
.responsible-grid h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.feature {
  min-height: 275px;
  padding: 28px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(23, 18, 15, 0.08);
}

.feature.large {
  grid-row: span 2;
  min-height: 568px;
  background:
    linear-gradient(180deg, rgba(143, 22, 40, 0), rgba(143, 22, 40, 0.08)),
    white;
}

.feature.dark {
  color: white;
  background: var(--ink);
}

.feature span,
.games-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(201, 154, 66, 0.18);
  color: var(--red);
  font-weight: 950;
}

.feature h3,
.games-grid h3,
.policy-grid h3,
.limit-grid h3,
.amenity-grid h3 {
  margin: 24px 0 10px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.feature p,
.games-grid p,
.policy-grid p,
.limit-grid p,
.amenity-grid p {
  color: var(--muted);
}

.feature.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.feature a,
.entry-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--red);
  font-weight: 950;
  border-bottom: 2px solid var(--gold);
}

.split-section {
  background:
    radial-gradient(circle at top right, rgba(201, 154, 66, 0.16), transparent 35%),
    var(--paper-2);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 46px;
  align-items: center;
}

.schedule-card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.schedule-card div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.schedule-card div:last-child {
  border-bottom: 0;
}

.schedule-card strong {
  color: var(--gold-soft);
}

.schedule-card span {
  color: rgba(255, 255, 255, 0.74);
}

.club-section {
  color: white;
  background:
    radial-gradient(circle at top left, rgba(201, 154, 66, 0.22), transparent 34%),
    linear-gradient(135deg, var(--ink), var(--red-dark));
}

.light p,
.club-section .kicker {
  color: rgba(255, 255, 255, 0.72);
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.club-grid div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.club-grid strong,
.club-grid span {
  display: block;
}

.club-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
}

.final-cta .container {
  max-width: 900px;
}

.final-cta h2 {
  margin-bottom: 24px;
}

.page-hero {
  padding: 120px 0 92px;
  color: white;
  background:
    linear-gradient(135deg, rgba(23, 18, 15, 0.88), rgba(77, 11, 24, 0.78)),
    radial-gradient(circle at 78% 20%, rgba(201, 154, 66, 0.44), transparent 34%),
    var(--ink);
}

.page-copy {
  max-width: 850px;
}

.page-copy .kicker {
  color: var(--gold-soft);
}

.page-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.stay-hero {
  background:
    linear-gradient(135deg, rgba(23, 18, 15, 0.9), rgba(24, 56, 47, 0.78)),
    radial-gradient(circle at 82% 18%, rgba(201, 154, 66, 0.42), transparent 32%),
    var(--green);
}

.casino-hero {
  background:
    linear-gradient(135deg, rgba(77, 11, 24, 0.91), rgba(23, 18, 15, 0.76)),
    conic-gradient(from 120deg, var(--red), var(--gold), var(--green), var(--red));
}

.dining-hero {
  background:
    linear-gradient(135deg, rgba(23, 18, 15, 0.88), rgba(143, 22, 40, 0.75)),
    radial-gradient(circle at 80% 20%, rgba(201, 154, 66, 0.42), transparent 34%),
    var(--red);
}

.responsible-hero,
.contact-hero {
  background:
    linear-gradient(135deg, rgba(23, 18, 15, 0.9), rgba(24, 56, 47, 0.76)),
    radial-gradient(circle at 80% 18%, rgba(201, 154, 66, 0.32), transparent 34%),
    var(--green);
}

.rooms-grid {
  display: grid;
  gap: 20px;
}

.room-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(23, 18, 15, 0.08);
}

.room-card.wide {
  grid-template-columns: 1fr 1fr;
}

.room-art {
  min-height: 340px;
}

.room-one {
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.38), transparent 24%),
    linear-gradient(135deg, #2b211b, #c99a42);
}

.room-two {
  background:
    radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #18382f, #ead3a2);
}

.room-three {
  background:
    radial-gradient(circle at 20% 72%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #8f1628, #17120f 56%, #c99a42);
}

.room-info {
  padding: 36px;
}

.room-info span,
.dining-card span,
.entry-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.room-info h2,
.dining-card h2,
.entry-card h2 {
  margin: 12px 0;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.room-info p,
.dining-card p,
.entry-card p {
  color: var(--muted);
}

.room-info ul {
  margin: 22px 0 0;
  padding-left: 20px;
}

.amenity-grid,
.policy-grid,
.limit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity-grid article,
.policy-grid article,
.limit-grid article {
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
}

.casino-layout {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 24px;
}

.entry-card {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.games-grid article {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(23, 18, 15, 0.07);
}

.floor-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
}

.floor-grid div {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 24px;
  text-align: center;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.floor-grid .floor-main {
  grid-row: span 2;
  min-height: 254px;
  color: white;
  font-size: 28px;
}

.dining-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 18px;
}

.dining-card {
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(23, 18, 15, 0.07);
}

.dining-large {
  grid-row: span 2;
  min-height: 460px;
  color: white;
  background:
    linear-gradient(135deg, rgba(23, 18, 15, 0.86), rgba(143, 22, 40, 0.73)),
    radial-gradient(circle at top right, rgba(201, 154, 66, 0.42), transparent 34%),
    var(--red);
}

.dining-large span {
  color: var(--gold-soft);
}

.dining-large p {
  color: rgba(255, 255, 255, 0.74);
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
}

.event-list time {
  color: var(--red);
  font-weight: 950;
}

.event-list h3 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.event-list p {
  margin: 0;
  color: var(--muted);
}

.responsible-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
}

.rule-list,
.info-list {
  display: grid;
  gap: 14px;
}

.rule-list div,
.info-list div {
  padding: 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
}

.rule-list strong,
.rule-list span,
.info-list strong,
.info-list span {
  display: block;
}

.rule-list span,
.info-list span {
  margin-top: 6px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-form {
  padding: 30px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(23, 18, 15, 0.08);
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(23, 18, 15, 0.18);
  border-radius: 16px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 66, 0.16);
}

.contact-form button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--ink));
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.success-message {
  display: none;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 850;
}

.success-message.show {
  display: block;
}

.footer {
  padding-top: 58px;
  color: white;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.7fr;
  gap: 32px;
  padding-bottom: 46px;
}

.footer p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.64);
}

.footer h4 {
  margin: 0 0 14px;
}

.footer a:not(.logo) {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  padding: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at top, rgba(201, 154, 66, 0.24), transparent 34%),
    rgba(9, 7, 5, 0.9);
  backdrop-filter: blur(10px);
}

.age-gate.show {
  display: grid;
}

.age-box {
  width: min(480px, 100%);
  padding: 34px;
  border-radius: 30px;
  text-align: center;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.age-box span {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: white;
  background: var(--red);
  font-size: 22px;
  font-weight: 950;
}

.age-box h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.age-box p {
  color: var(--muted);
}

.age-box button {
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
  color: white;
  background: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    left: 19px;
    right: 19px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 24px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
  }

  .hero-grid,
  .split-grid,
  .casino-layout,
  .responsible-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .quick-grid,
  .feature-grid,
  .club-grid,
  .amenity-grid,
  .policy-grid,
  .limit-grid,
  .floor-grid,
  .dining-grid {
    grid-template-columns: 1fr 1fr;
  }

  .entry-card {
    position: static;
  }

  .room-card,
  .room-card.wide {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 74px;
  }

  .logo {
    font-size: 14px;
  }

  .logo strong {
    width: 42px;
    height: 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 44px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .center-chip {
    width: 300px;
    height: 300px;
  }

  .center-chip span {
    font-size: 58px;
  }

  .symbol {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .hotel-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 12px;
  }

  .quick-grid,
  .feature-grid,
  .club-grid,
  .amenity-grid,
  .policy-grid,
  .limit-grid,
  .games-grid,
  .floor-grid,
  .dining-grid {
    grid-template-columns: 1fr;
  }

  .feature.large {
    min-height: 330px;
  }

  .section {
    padding: 66px 0;
  }

  .schedule-card div,
  .event-list article {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 84px 0 66px;
  }
}