:root {
  --bg: #eef2f5;
  --bg-alt: #e3e9ef;
  --surface: #f8fafb;
  --ink: #1a2332;
  --muted: #5c6b7a;
  --accent: #c45c4a;
  --accent-deep: #9e4335;
  --dusk: #3d6b8c;
  --dusk-soft: #4a6fa5;
  --moon: #d7e0ea;
  --deep: #121820;
  --deep-2: #1c2430;
  --line: #cfd7df;
  --shadow: 0 18px 50px rgba(18, 24, 32, 0.12);
  --radius: 4px;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
  --header-h: 76px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  background: transparent;
}

.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(18, 24, 32, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.nav-desktop {
  display: none;
  gap: 1.35rem;
  align-items: center;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: #fff;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}

.icon-link {
  color: rgba(255, 255, 255, 0.85);
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.icon-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.menu-toggle {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  background: rgba(18, 24, 32, 0.97);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 99;
  padding: 2rem 1.5rem 3rem;
  overflow: auto;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  color: #fff;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.05rem;
}

.mobile-nav .btn {
  margin-top: 1.5rem;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.btn:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.btn-dark {
  background: var(--deep);
  border-color: var(--deep);
}

.btn-dark:hover {
  background: var(--dusk);
  border-color: var(--dusk);
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-line:hover {
  background: var(--ink);
  color: #fff;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-weight: 500;
  transition: gap 0.25s ease;
}

.link-arrow:hover {
  gap: 0.7rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: #fff;
  overflow: hidden;
  background: var(--deep);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 24, 32, 0.45) 0%, rgba(18, 24, 32, 0.28) 40%, rgba(18, 24, 32, 0.72) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(61, 107, 140, 0.35), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 5rem;
}

.hero-kicker {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moon);
  margin: 0 0 1rem;
  opacity: 0;
  animation: rise 0.9s ease 0.15s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  line-height: 1.05;
  opacity: 0;
  animation: rise 0.9s ease 0.3s forwards;
}

.hero-lead {
  max-width: 34rem;
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  opacity: 0;
  animation: rise 0.9s ease 0.45s forwards;
}

.hero-actions {
  opacity: 0;
  animation: rise 0.9s ease 0.6s forwards;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #fff;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.eyebrow {
  display: block;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.section-lead {
  color: var(--muted);
  max-width: 40rem;
  margin: 0;
}

.center {
  text-align: center;
}

.center .section-lead {
  margin-inline: auto;
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-media {
  overflow: hidden;
  min-height: 280px;
  background: var(--bg-alt);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.8s ease;
}

.split-media:hover img {
  transform: scale(1.04);
}

.bg-pattern {
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(61, 107, 140, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 107, 140, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.bg-soft {
  background: var(--bg-alt);
}

.bg-deep {
  background: var(--deep);
  color: #fff;
}

/* Feature blocks — not card-heavy; thin rules */
.feature-grid {
  display: grid;
  gap: 0;
  margin-top: 2.8rem;
  border-top: 1px solid var(--line);
}

.feature-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
}

.feature-item::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--dusk));
  margin-bottom: 0.9rem;
}

/* Banner with overlay panel */
.mood-band {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: center;
  padding: 4rem 0;
}

.mood-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 24, 32, 0.55), rgba(18, 24, 32, 0.25) 55%, rgba(18, 24, 32, 0.45));
}

.mood-panel {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 420px);
  margin-left: auto;
  margin-right: max(1.25rem, calc((100% - var(--max)) / 2));
  background: var(--surface);
  color: var(--ink);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow);
}

.mood-panel h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin: 0 0 0.9rem;
  font-weight: 500;
}

.mood-panel p {
  color: var(--muted);
  margin: 0 0 1.4rem;
}

/* Quotes */
.quotes {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.quote {
  padding: 1.6rem 0 0;
  border-top: 2px solid var(--accent);
}

.quote p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.quote cite {
  font-style: normal;
  color: var(--dusk);
  font-weight: 600;
  font-size: 0.92rem;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 2.4rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-weight: 500;
}

.faq-question i {
  transition: transform 0.25s ease;
  color: var(--accent);
  font-style: normal;
}

.faq-item.is-open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  margin: 0 0 1.15rem;
  color: var(--muted);
}

/* Responsible strip */
.responsible {
  background: var(--deep-2);
  color: rgba(255, 255, 255, 0.88);
  padding: 1.25rem 0;
}

.responsible-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.responsible .brand-name {
  color: #fff;
}

.responsible-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
}

/* Contact */
.contact-block p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.contact-block strong {
  color: var(--ink);
}

.map-embed {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  min-height: 280px;
  overflow: hidden;
  background: var(--bg-alt);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-grid label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: 2px solid rgba(61, 107, 140, 0.35);
  border-color: var(--dusk);
}

/* Page hero (inner) */
.page-hero {
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 3rem;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 24, 32, 0.35), rgba(18, 24, 32, 0.75));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0.3rem 0 0;
  font-weight: 500;
}

/* Legal */
.legal {
  max-width: 760px;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 2rem 0 0.7rem;
  font-weight: 500;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}

.legal li {
  margin-bottom: 0.4rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.gallery-grid a {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-alt);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

/* Casino rooms */
.room-list {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.room {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.room-media {
  overflow: hidden;
  min-height: 240px;
  background: var(--bg-alt);
}

.room-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.room h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
  font-weight: 500;
}

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

/* Footer */
.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0.35rem 0;
  font-size: 0.92rem;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  padding: 0.28rem 0;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

/* Cookie */
.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 520px;
  margin-left: auto;
  background: var(--deep);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.25rem 1.25rem 1.15rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: #9ec0d8;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
    border-top: 0;
  }

  .feature-item {
    border-bottom: 1px solid var(--line);
    padding: 1.8rem 0;
  }

  .quotes {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

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

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

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

  .room:nth-child(even) .room-media {
    order: 2;
  }
}

@media (min-width: 980px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid.two .full {
    grid-column: 1 / -1;
  }
}
