@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Lato:wght@400;700&display=swap');

:root {
  --bg-base: #14100a;
  --bg-card: #1e1810;
  --bg-section-alt: #0e0b07;
  --accent-primary: #c9a84c;
  --accent-secondary: #7b1f2e;
  --text-primary: #f5edd8;
  --text-muted: #a09070;
  --gradient-hero: linear-gradient(160deg, #0e0b07 0%, #1e1810 100%);
  --radius-card: 4px;
  --transition: 0.25s ease;
  --container: min(1180px, calc(100% - 48px));
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 168, 76, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(123, 31, 46, 0.08), transparent 18%),
    var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
}

section,
header,
footer,
main,
.container,
.wrapper {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 24px;
  min-height: 70px;
  height: auto;
  background: var(--bg-base);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(20, 16, 10, 0.95);
  border-bottom-color: rgba(201, 168, 76, 0.18);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.logo-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #c9a84c 0%, #e8c97a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: 1.15;
}

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

.nav-menu a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.active {
  color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex: 0 0 44px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(90deg, #c9a84c, #e8c97a);
  color: #14100a;
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.24);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(201, 168, 76, 0.7);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 1);
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: center;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 11, 7, 0.88), rgba(14, 11, 7, 0.35)),
    linear-gradient(180deg, rgba(20, 16, 10, 0.2), rgba(20, 16, 10, 0.78));
}

.hero.has-image {
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0 90px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-primary);
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.1;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin-bottom: 0.75rem;
}

p,
li,
label {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.2vw, 1.05rem);
}

.hero p {
  max-width: 38rem;
  margin-top: 1.5rem;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: var(--text-primary);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.ornament {
  width: 180px;
  height: 22px;
  margin: 1.5rem 0 0;
}

.ornament svg {
  width: 100%;
  height: 100%;
}

.section {
  padding: 88px 0;
}

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

.section-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.lead {
  max-width: 44rem;
}

.stats-strip {
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(14, 11, 7, 0.92);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 1.4rem;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.stat:last-child {
  border-right: none;
}

.stat strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.card,
.feature-card,
.room-card,
.treatment-list,
.contact-panel,
.policy-card,
.notice-box,
.form-panel,
.staff-card,
.gallery-card,
.schedule-card,
.highlight-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.feature-card,
.room-card,
.staff-card,
.gallery-card,
.highlight-card {
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover,
.room-card:hover,
.staff-card:hover,
.gallery-card:hover,
.highlight-card:hover {
  border-color: rgba(201, 168, 76, 1);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.15);
  transform: translateY(-3px);
}

.feature-card img,
.room-card img,
.gallery-card img,
.highlight-card img {
  width: 100%;
  height: 270px;
}

.card-body {
  padding: 1.5rem;
}

.price-tag,
.small-heading {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--accent-primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.gallery-card.large img,
.gallery-card.small img {
  height: 420px;
}

.casino-teaser {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}

.casino-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 11, 7, 0.2), rgba(14, 11, 7, 0.88)),
    linear-gradient(90deg, rgba(14, 11, 7, 0.75), rgba(14, 11, 7, 0.22));
}

.casino-teaser img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.casino-teaser-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 38rem;
}

.disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.6rem 0.9rem;
  background: rgba(123, 31, 46, 0.28);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--text-primary);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.staff-grid,
.contact-grid,
.content-grid,
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.staff-card {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.staff-card img {
  width: 100%;
  height: 100%;
}

.quote {
  margin-top: 1rem;
  color: var(--text-primary);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-style: italic;
}

.contact-panel,
.form-panel,
.notice-box,
.policy-card,
.schedule-card {
  padding: 1.75rem;
}

.notice-box {
  background: linear-gradient(135deg, rgba(123, 31, 46, 0.28), rgba(201, 168, 76, 0.08));
}

.meta-list,
.treatment-list ul,
.detail-list {
  display: grid;
  gap: 0.9rem;
}

.meta-list strong,
.detail-list strong {
  color: var(--text-primary);
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.room-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 0.92rem;
}

form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--text-primary);
  font-size: 0.94rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  background: rgba(14, 11, 7, 0.78);
  color: var(--text-primary);
  padding: 0.9rem 1rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(201, 168, 76, 0.9);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.16);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.page-hero {
  min-height: 62vh;
}

.page-hero h1 {
  max-width: 18ch;
}

.image-panel {
  overflow: hidden;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--bg-card);
  border-top: 1px solid var(--accent-primary);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner a,
.site-footer a,
.rich-text a,
.contact-panel a,
.notice-box a {
  color: var(--accent-primary);
}

.cookie-banner[hidden] {
  display: none !important;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay[hidden] {
  display: none !important;
}

.modal-box {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  background: var(--bg-section-alt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}

.footer-note {
  margin-top: 0.9rem;
  font-size: 0.94rem;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.rich-text {
  display: grid;
  gap: 1rem;
}

.rich-text h2,
.rich-text h3 {
  margin: 1rem 0 0.2rem;
}

.rich-text ul {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.1rem;
}

.rich-text li {
  list-style: disc;
}

@media (max-width: 1200px) {
  .gallery-card.large img,
  .gallery-card.small img {
    height: 360px;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex !important;
    margin-left: auto;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: calc(100vh - 70px);
    background: var(--bg-base);
    padding: 24px 28px;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-check:checked ~ .nav-menu,
  .nav-check:checked ~ nav .nav-menu {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
  }

  .nav-cta {
    margin-top: 20px;
  }

  .stats-grid,
  .card-grid,
  .gallery-grid,
  .staff-grid,
  .contact-grid,
  .content-grid,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .staff-card img {
    height: 320px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 96px 0 72px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 16px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 72px 0;
  }

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

  .gallery-card.large img,
  .gallery-card.small img,
  .feature-card img,
  .room-card img,
  .image-panel img {
    height: 300px;
  }

  .casino-teaser {
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 80px 0 60px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
  }

  .cookie-banner {
    padding: 16px;
  }

  .modal-box {
    padding: 40px 24px;
  }

  .stat {
    padding: 1.1rem;
  }
}

/* Header navigation rebuilt from scratch */
.site-header { overflow: visible !important; }
.menu-switch { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); opacity: 0; }
.menu-button { display: none; width: 48px; height: 48px; margin-left: auto; padding: 12px; flex: 0 0 48px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; cursor: pointer; z-index: 1101; }
.menu-button span { display: block; width: 26px; height: 3px; border-radius: 3px; background: var(--text-primary, #fff); transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-switch:checked + .menu-button span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-switch:checked + .menu-button span:nth-child(2) { opacity: 0; }
.menu-switch:checked + .menu-button span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.header-navigation { display: flex; align-items: center; gap: 28px; list-style: none; }

@media (max-width: 960px) {
  .menu-button { display: flex !important; }
  .header-navigation {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 24px 28px;
    background: var(--bg-base, #14100a);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 1100;
  }
  .menu-switch:checked ~ .header-navigation,
  .menu-switch:checked ~ nav .header-navigation { display: flex !important; }
  .header-navigation li { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .header-navigation a { display: block; width: 100%; padding: 15px 0; }
}
