@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: #100608;
  --bg-card: #1a0c0e;
  --bg-section-alt: #0d0507;
  --accent-primary: #9f1239;
  --accent-secondary: #ca8a04;
  --text-primary: #fdf2f2;
  --text-muted: #9a7070;
  --gradient-hero: linear-gradient(160deg, #100608 0%, #1e0a0c 100%);
  --radius-card: 4px;
  --transition: 0.25s ease;
  --container: min(1120px, calc(100% - 3rem));
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0 0 0.9rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 4.1rem);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
}

h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.2vw, 1.09rem);
}

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

.section {
  padding: 5rem 0;
  position: relative;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-secondary);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  background: linear-gradient(90deg, #9f1239 0%, #ca8a04 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  font-size: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 70px;
  border-bottom: 1px solid rgba(159, 18, 57, 0.2);
  background: rgba(16, 6, 8, 0.86);
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  background: rgba(13, 5, 7, 0.95);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-img {
  border-radius: 7px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(202, 138, 4, 0.6);
  background: transparent;
  color: var(--text-primary);
  font-size: 1.6rem;
  border-radius: 4px;
}

.site-nav ul {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--accent-secondary);
}

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

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 6, 8, 0.2) 0%, rgba(16, 6, 8, 0.8) 65%, rgba(16, 6, 8, 0.96) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  max-width: 50rem;
}

.hero-subtitle {
  color: #e7cbcb;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.2rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: #9f1239;
  color: #fdf2f2;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #b11746;
}

.btn-secondary {
  border: 1px solid #ca8a04;
  color: #ca8a04;
  background: transparent;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(202, 138, 4, 0.16);
}

.stats-strip {
  border-top: 1px solid rgba(159, 18, 57, 0.2);
  border-bottom: 1px solid rgba(159, 18, 57, 0.2);
  background: #16090b;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
  text-align: center;
  color: #dfbbbb;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

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

.card {
  background: var(--bg-card);
  border: 1px solid rgba(159, 18, 57, 0.2);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: #9f1239;
  box-shadow: 0 4px 20px rgba(159, 18, 57, 0.15);
}

.card-body {
  padding: 1.2rem;
}

.price {
  color: var(--accent-secondary);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.media {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(159, 18, 57, 0.3);
}

.media img {
  width: 100%;
  object-fit: cover;
}

.quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #f2d9d9;
  border-left: 3px solid var(--accent-secondary);
  padding-left: 1rem;
  margin: 1rem 0 1.4rem;
}

.ribbon-divider {
  height: 16px;
  margin: 0 auto;
  width: min(520px, 80%);
  background:
    linear-gradient(90deg, transparent 0 5%, #9f1239 5% 45%, #ca8a04 45% 55%, #9f1239 55% 95%, transparent 95% 100%);
  clip-path: polygon(0 50%, 5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%);
}

.motif {
  height: 28px;
  width: 28px;
  border: 1px solid rgba(202, 138, 4, 0.5);
  transform: rotate(45deg);
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(202, 138, 4, 0.8);
  color: #f8d07a;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.3rem 0.55rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.casino-note {
  margin-top: 1rem;
  color: #e2b8b8;
  font-size: 0.94rem;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
}

.staff-card img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

.contact-list li {
  margin-bottom: 0.6rem;
  color: #e5c7c7;
}

.content-hero {
  min-height: 52vh;
}

.content-hero .hero-content {
  max-width: 44rem;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid rgba(159, 18, 57, 0.26);
  border-radius: 4px;
  padding: 1.2rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  color: #f5dede;
  font-weight: 700;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  background: #140708;
  border: 1px solid rgba(159, 18, 57, 0.5);
  color: var(--text-primary);
  border-radius: 4px;
  padding: 0.7rem 0.75rem;
  margin-bottom: 0.9rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--accent-secondary);
  border-color: var(--accent-secondary);
}

table.menu {
  width: 100%;
  border-collapse: collapse;
}

table.menu td {
  border-bottom: 1px solid rgba(159, 18, 57, 0.35);
  padding: 0.7rem 0;
  color: #e4caca;
}

table.menu td:last-child {
  text-align: right;
  color: var(--accent-secondary);
  font-weight: 700;
}

.legal-section h2 {
  margin-top: 1.8rem;
}

.legal-section p,
.legal-section li {
  color: #ddc2c2;
}

.legal-section ul {
  list-style: disc;
  margin-left: 1.2rem;
}

.site-footer {
  border-top: 1px solid rgba(159, 18, 57, 0.25);
  background: #0a0405;
  padding: 2rem 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #efcdcd;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-secondary);
}

.footer-note {
  color: #e2b4b4;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
}

.footer-copy {
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  background: #1b0a0e;
  border: 1px solid rgba(159, 18, 57, 0.5);
  border-radius: 4px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: #f0dcdc;
}

.cookie-banner a {
  color: var(--accent-secondary);
  text-decoration: underline;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(10, 3, 4, 0.82);
}

.modal-box {
  background: #1b0a0e;
  border: 1px solid rgba(159, 18, 57, 0.5);
  border-radius: 4px;
  max-width: 28rem;
  width: 100%;
  padding: 1.4rem;
  position: relative;
}

.modal-box h3 {
  margin-bottom: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  border: 0;
  background: transparent;
  color: #fdf2f2;
  font-size: 1.65rem;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1200px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    max-width: 43rem;
  }
}

@media (max-width: 960px) {
  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #130709;
    border-bottom: 1px solid rgba(159, 18, 57, 0.25);
    padding: 0.7rem 1.5rem 1.1rem;
    display: none;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.6rem;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(1120px, calc(100% - 2rem));
  }

  .section {
    padding: 4rem 0;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Fix: backdrop-filter on the sticky header created a clipping context that
   hid the dropdown nav (positioned below the 70px header box). */
@media (max-width: 960px) {
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #100608;
  }
}
