 
:root {
  --ivory: #fffaf1;
  --cream: #f5ead8;
  --champagne: #e8d5b5;
  --beige: #d8c1a1;
  --gold: #c7a46b;
  --maple: #8c2f39;
  --maple-dark: #64222a;
  --espresso: #251815;
  --espresso-soft: #3b2a25;
  --muted: #77685f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(37, 24, 21, 0.12);
  --soft-shadow: 0 18px 40px rgba(37, 24, 21, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--espresso);
  background: var(--ivory);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.narrow {
  max-width: 850px;
}

.centered-text {
  text-align: center;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--espresso);
}

h1 {
  font-size: clamp(2.15rem, 5.2vw, 4.25rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.85rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 250, 241, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(199, 164, 107, 0.22);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--soft-shadow);
  background: rgba(255, 250, 241, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--espresso);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--maple), var(--gold));
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 28px rgba(140, 47, 57, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--espresso-soft);
  font-size: 0.91rem;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--maple);
  background: rgba(199, 164, 107, 0.14);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--espresso);
  border-radius: 50%;
  cursor: pointer;
  padding: 13px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ivory);
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  min-height: calc(100vh - var(--header-height));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero {
  min-height: 540px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37, 24, 21, .76), rgba(37, 24, 21, .48), rgba(37, 24, 21, .2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 92px 0;
  color: var(--white);
}

.hero-content.compact {
  max-width: 790px;
}

.hero-content h1,
.hero-content p {
  color: var(--white);
}

.hero-content p {
  max-width: 690px;
  font-size: 1.18rem;
  color: rgba(255, 250, 241, 0.9);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow::before,
.section-kicker::before {
  content: '';
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 24, 21, .16);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--maple), var(--maple-dark));
  border-color: rgba(255, 255, 255, 0.08);
}

.btn-secondary {
  background: var(--espresso);
  color: var(--ivory);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: rgba(37, 24, 21, .17);
}

.btn-light {
  background: var(--cream);
  color: var(--espresso);
}

.full-width {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--maple);
  font-weight: 800;
}

.text-link i {
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(5px);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f7eddd, #fffaf1);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 1.02fr 0.98fr;
}

.split-grid.reverse .image-frame {
  order: 2;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--champagne);
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: calc(var(--radius-lg) - 12px);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-frame:hover img {
  transform: scale(1.04);
}

.image-frame.tall img {
  height: 660px;
}

.content-block {
  max-width: 650px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centered .section-kicker {
  justify-content: center;
}

.section-heading.centered .section-kicker::after {
  content: '';
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}

.card-grid.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.hotel-card,
.package-card,
.review-card,
.value-card,
.feature-card,
.info-card,
.contact-form {
  border: 1px solid rgba(199, 164, 107, 0.23);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--soft-shadow);
}

.hotel-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hotel-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

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

.card-body {
  padding: 26px;
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--maple);
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.package-card {
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(199, 164, 107, .18), transparent 46%);
  pointer-events: none;
}

.package-card i,
.value-card i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--maple), var(--gold));
  margin-bottom: 20px;
}

.package-card span {
  display: block;
  margin-top: 20px;
  color: var(--maple);
  font-size: 0.86rem;
  font-weight: 750;
}

.feature-band {
  background: linear-gradient(135deg, var(--espresso), #3b2520);
  color: var(--ivory);
}

.feature-band h2,
.feature-band p {
  color: var(--ivory);
}

.feature-band p {
  color: rgba(255, 250, 241, .76);
}

.responsible-section {
  background: var(--cream);
}

.responsible-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid rgba(199, 164, 107, 0.3);
  box-shadow: var(--shadow);
}

.responsible-badge,
.age-mark {
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--maple), var(--maple-dark));
  color: var(--white);
}

.responsible-badge {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  line-height: 1;
  box-shadow: 0 20px 38px rgba(140, 47, 57, .24);
}

.responsible-badge span {
  display: block;
  margin-top: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-section p {
  font-size: 1.08rem;
}

.value-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.review-card {
  padding: 28px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--maple);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.stars {
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.feature-card div {
  padding: 25px;
}

.feature-card i {
  color: var(--maple);
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.casino-frame {
  position: relative;
}

.image-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(140, 47, 57, .93);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(37, 24, 21, .24);
}

.image-badge span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 0 13px;
}

.notice-box {
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(199, 164, 107, .12);
  color: var(--espresso-soft);
  margin-top: 22px;
}

.info-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: stretch;
}

.info-card {
  padding: clamp(28px, 5vw, 46px);
}

.info-card.large {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.info-card a:not(.btn) {
  color: var(--maple);
  font-weight: 700;
}

.small-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.map-wrap {
  min-height: 430px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(199, 164, 107, 0.23);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.contact-form {
  padding: clamp(28px, 5vw, 46px);
}

.form-row {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 750;
  color: var(--espresso);
  margin-bottom: 8px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(37, 24, 21, .16);
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.85);
  padding: 14px 16px;
  color: var(--espresso);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 164, 107, .15);
  background: var(--white);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.45;
  margin: 8px 0 6px;
}

.consent-row input {
  width: auto;
  margin-top: 5px;
  accent-color: var(--maple);
}

.error-message {
  display: block;
  min-height: 18px;
  color: var(--maple);
  font-weight: 700;
  font-size: 0.86rem;
}

.success-message {
  margin-top: 16px;
  color: #315d3a;
  font-weight: 800;
}

.site-footer {
  background: var(--espresso);
  color: var(--ivory);
  padding: 72px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr 1.05fr;
  gap: 42px;
}

.footer-logo,
.site-footer h3,
.site-footer strong {
  color: var(--ivory);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 250, 241, .76);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-disclaimer {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: var(--ivory) !important;
}

.age-mark {
  width: 92px;
  height: 92px;
  border-radius: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: var(--ivory);
  transition: 0.2s ease;
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--espresso);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 42px;
  padding-top: 24px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 241, 0.96);
  border: 1px solid rgba(199, 164, 107, 0.34);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie-banner.show {
  display: grid;
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(37, 24, 21, .58);
}

.cookie-modal.show {
  display: grid;
}

.cookie-panel {
  position: relative;
  width: min(560px, 100%);
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  cursor: pointer;
  color: var(--espresso);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid rgba(199, 164, 107, .22);
}

.cookie-option small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--maple);
}

@media (max-width: 1100px) {
  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 250, 241, .98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(199, 164, 107, .28);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 13px 16px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .package-grid,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 72px 0;
  }

  .split-grid,
  .split-grid.reverse,
  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-grid.reverse .image-frame {
    order: initial;
  }

  .card-grid.three,
  .feature-card-grid,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-frame img,
  .image-frame.tall img {
    height: 430px;
  }

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

  .responsible-badge {
    width: 140px;
    height: 140px;
    font-size: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .logo span:last-child {
    font-size: 0.96rem;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
  }

  .hero,
  .page-hero {
    min-height: 580px;
  }

  .hero-content {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(1.95rem, 11vw, 3rem);
  }

  h2 {
    font-size: clamp(1.45rem, 8vw, 2.25rem);
  }

  .hero-actions,
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .package-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .image-frame img,
  .image-frame.tall img {
    height: 330px;
  }

  .image-badge {
    width: 102px;
    height: 102px;
    right: 16px;
    bottom: 16px;
    font-size: 2.2rem;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }

  .cookie-panel {
    padding: 28px 20px;
  }
}


/* Legal and responsible entertainment pages */
.legal-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(199, 164, 107, 0.23);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.legal-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.legal-sidebar a {
  color: var(--maple);
  font-weight: 800;
}

.legal-card {
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(199, 164, 107, 0.23);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
}

.legal-card+.legal-card {
  margin-top: 24px;
}

.legal-card h2 {
  margin-bottom: 14px;
}

.legal-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
}

.legal-card li {
  margin-bottom: 9px;
}

.legal-card a {
  color: var(--maple);
  font-weight: 800;
}

.legal-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  margin-top: 18px;
  border-radius: 18px;
  background: rgba(199, 164, 107, .13);
  color: var(--espresso-soft);
}

.legal-note i {
  color: var(--maple);
  margin-top: 5px;
}

.policy-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.policy-mini-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid rgba(199, 164, 107, 0.25);
}

.policy-mini-card i {
  color: var(--maple);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal-links a {
  color: rgba(255, 250, 241, .76);
}

.footer-legal-links a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }

  .policy-mini-grid {
    grid-template-columns: 1fr;
  }
}