:root {
  --ink: #16120f;
  --paper: #fbf7ef;
  --ivory: #afbb7b;
  --muted: #6c625a;
  --burgundy: #7a1f2d;
  --burgundy-dark: #4b111c;
  --green: #123f32;
  --green-soft: #e7efe8;
  --gold: #c69a45;
  --gold-soft: #f3e4bd;
  --line: rgba(22, 18, 15, 0.14);
  --shadow: 0 18px 42px rgba(22, 18, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ivory);
  border: 1px solid var(--line);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 239, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.05;
}

.brand-mark {
  color: var(--burgundy);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a.active {
  color: var(--ink);
  background: var(--gold-soft);
  outline: none;
}

.hero {
  min-height: 690px;
  display: grid;
  align-items: end;
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(7, 10, 9, 0.88), rgba(7, 10, 9, 0.42) 48%, rgba(7, 10, 9, 0.2)),
    url("../images/casino-restaurant-hero.jpg") center / cover no-repeat;
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  padding: 130px 0 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: 4.6rem;
  font-weight: 700;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.28rem;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 1.17rem;
  color: rgba(255, 253, 247, 0.88);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #1e1409;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 253, 247, 0.1);
  color: var(--ivory);
  border-color: rgba(255, 253, 247, 0.36);
}

.button.dark {
  background: var(--green);
  color: var(--ivory);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(22, 18, 15, 0.16);
  outline: none;
}

.notice-bar {
  background: var(--burgundy-dark);
  color: var(--ivory);
  border-top: 1px solid rgba(255, 253, 247, 0.16);
}

.notice-bar .section-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  font-size: 0.95rem;
}

.notice-bar strong {
  color: var(--gold-soft);
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding: 58px 0;
}

.band {
  background: var(--ivory);
  border-block: 1px solid var(--line);
}

.green-band {
  color: var(--ivory);
  background: var(--green);
}

.green-band .muted,
.green-band .section-kicker {
  color: rgba(255, 253, 247, 0.75);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0;
  color: var(--burgundy);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.photo-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #15110f;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 100%;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--ivory);
  box-shadow: 0 12px 30px rgba(22, 18, 15, 0.08);
}

.card.dark {
  background: rgba(255, 253, 247, 0.08);
  border-color: rgba(255, 253, 247, 0.16);
  box-shadow: none;
}

.card p {
  margin: 12px 0 0;
}

.price {
  display: block;
  margin-top: 18px;
  color: var(--burgundy);
  font-weight: 900;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.cta-band {
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(18, 63, 50, 0.96), rgba(122, 31, 45, 0.92)),
    url("../images/roulette-lounge.jpg") center / cover no-repeat;
}

.cta-band .section-inner {
  min-height: 330px;
  display: grid;
  align-items: center;
}

.cta-copy {
  max-width: 690px;
}

.legal-content {
  max-width: 920px;
}

.legal-content h1 {
  color: var(--ink);
  font-size: 3.1rem;
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.6rem;
}

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

.legal-content ul {
  padding-left: 20px;
}

.page-hero {
  color: var(--ivory);
  background:
    linear-gradient(90deg, rgba(7, 10, 9, 0.86), rgba(7, 10, 9, 0.44)),
    url("../images/roulette-lounge.jpg") center / cover no-repeat;
}

.page-hero .section-inner {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 88px 0 58px;
}

.page-hero h1 {
  font-size: 3.8rem;
}

.site-footer {
  color: rgba(255, 253, 247, 0.82);
  background: #15110f;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

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

.site-footer a {
  color: rgba(255, 253, 247, 0.82);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--gold-soft);
  outline: none;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 253, 247, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
    background-position: 58% center;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .split,
  .split.reverse,
  .grid.three,
  .grid.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    padding: 92px 0 56px;
  }

  .hero {
    min-height: 590px;
  }

  h1,
  .page-hero h1,
  .legal-content h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .lead {
    font-size: 1.02rem;
  }

  .section {
    padding: 64px 0;
  }

  .notice-bar .section-inner,
  .hero-actions,
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .main-nav a {
    padding-inline: 10px;
  }
}
