@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --mm-emerald: #0a2f24;
  --mm-emerald-deep: #061c16;
  --mm-emerald-mid: #145a45;
  --mm-gold: #c4a35a;
  --mm-gold-soft: #e8d5a3;
  --mm-ivory: #f7f3eb;
  --mm-cream: #efe8dc;
  --mm-charcoal: #1c1c1c;
  --mm-muted: #5c6b64;
  --mm-white: #ffffff;
  --mm-shadow: 0 18px 50px rgba(6, 28, 22, 0.18);
  --mm-radius: 1.25rem;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--mm-charcoal);
  background: var(--mm-ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--mm-emerald-mid);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--mm-gold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--mm-emerald);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mm-gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--mm-muted);
  max-width: 40rem;
}

.btn-mm {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-mm-primary {
  background: linear-gradient(135deg, var(--mm-gold), #a8873f);
  color: var(--mm-emerald-deep);
  box-shadow: 0 10px 28px rgba(196, 163, 90, 0.35);
}

.btn-mm-primary:hover {
  transform: translateY(-2px);
  color: var(--mm-emerald-deep);
  box-shadow: 0 14px 34px rgba(196, 163, 90, 0.45);
}

.btn-mm-outline {
  background: transparent;
  color: var(--mm-ivory);
  border: 1.5px solid rgba(247, 243, 235, 0.55);
}

.btn-mm-outline:hover {
  background: rgba(247, 243, 235, 0.12);
  color: var(--mm-white);
  transform: translateY(-2px);
}

.btn-mm-dark {
  background: var(--mm-emerald);
  color: var(--mm-ivory);
}

.btn-mm-dark:hover {
  background: var(--mm-emerald-mid);
  color: var(--mm-white);
  transform: translateY(-2px);
}

.btn-mm-ghost {
  background: transparent;
  color: var(--mm-muted);
  border: 1.5px solid #d5d0c6;
}

.btn-mm-ghost:hover {
  border-color: var(--mm-emerald);
  color: var(--mm-emerald);
}

.topbar {
  background: var(--mm-emerald-deep);
  color: var(--mm-gold-soft);
  font-size: 0.82rem;
  text-align: center;
  padding: 0.55rem 1rem;
  letter-spacing: 0.03em;
}

.topbar i {
  margin-right: 0.4rem;
  color: var(--mm-gold);
}

.navbar-mm {
  background: rgba(247, 243, 235, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 47, 36, 0.08);
  padding: 0.85rem 0;
}

.navbar-mm .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--mm-emerald);
  letter-spacing: 0.01em;
}

.navbar-mm .navbar-brand:hover {
  color: var(--mm-emerald-mid);
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  background: linear-gradient(145deg, var(--mm-emerald), var(--mm-emerald-mid));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-gold);
  font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(10, 47, 36, 0.25);
}

.brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mm-muted);
  margin-top: -0.15rem;
}

.navbar-mm .nav-link {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--mm-charcoal);
  padding: 0.45rem 0.85rem;
  position: relative;
}

.navbar-mm .nav-link::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--mm-gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}

.navbar-mm .nav-link:hover,
.navbar-mm .nav-link.active {
  color: var(--mm-emerald);
}

.navbar-mm .nav-link:hover::after,
.navbar-mm .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: none;
  padding: 0.35rem;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  width: 1.6rem;
  height: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--mm-emerald);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(0.45rem) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-0.45rem) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--mm-ivory);
  background:
    linear-gradient(120deg, rgba(6, 28, 22, 0.88) 0%, rgba(10, 47, 36, 0.55) 48%, rgba(6, 28, 22, 0.72) 100%),
    url('../images/hero-banner.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(196, 163, 90, 0.18), transparent 55%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  padding: 5rem 0 4rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mm-gold-soft);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.15s forwards;
}

.hero h1 {
  color: var(--mm-ivory);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}

.hero p {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(247, 243, 235, 0.88);
  max-width: 34rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.45s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-ornament {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: min(280px, 32vw);
  aspect-ratio: 1;
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 50%;
  opacity: 0.5;
  animation: spinSlow 28s linear infinite;
  pointer-events: none;
}

.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(232, 213, 163, 0.4);
  border-radius: 50%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGlow {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--mm-cream) 0%, var(--mm-ivory) 100%);
}

.section-dark {
  background: linear-gradient(160deg, var(--mm-emerald-deep), var(--mm-emerald));
  color: var(--mm-ivory);
}

.section-dark h2,
.section-dark h3 {
  color: var(--mm-ivory);
}

.section-dark .section-lead {
  color: rgba(247, 243, 235, 0.78);
}

.about-visual {
  position: relative;
  border-radius: var(--mm-radius);
  overflow: hidden;
  box-shadow: var(--mm-shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  transition: transform 0.7s ease;
}

.about-visual:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(6, 28, 22, 0.88);
  color: var(--mm-gold-soft);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  max-width: 220px;
  animation: floatSoft 5s ease-in-out infinite;
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--mm-ivory);
  line-height: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.feature-list i {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(196, 163, 90, 0.15);
  color: var(--mm-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.menu-card {
  grid-column: span 4;
  background: var(--mm-white);
  border-radius: var(--mm-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 28, 22, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mm-shadow);
}

.menu-card-media {
  height: 210px;
  overflow: hidden;
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.06);
}

.menu-card-body {
  padding: 1.5rem 1.4rem 1.7rem;
}

.menu-card-body h3 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.menu-card-body p {
  color: var(--mm-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.menu-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mm-gold);
  margin-bottom: 0.65rem;
}

.casino-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.casino-panel {
  background: rgba(247, 243, 235, 0.06);
  border: 1px solid rgba(196, 163, 90, 0.25);
  border-radius: var(--mm-radius);
  padding: 1.75rem;
}

.casino-panel + .casino-panel {
  margin-top: 1rem;
}

.casino-panel h3 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.casino-panel h3 i {
  color: var(--mm-gold);
}

.casino-panel p {
  margin: 0;
  color: rgba(247, 243, 235, 0.78);
  font-size: 0.98rem;
}

.casino-visual {
  border-radius: var(--mm-radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}

.casino-visual img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.casino-visual::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(6, 28, 22, 0.75));
}

.games-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.game-tile {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  background: rgba(247, 243, 235, 0.07);
  border: 1px solid rgba(232, 213, 163, 0.18);
  transition: transform 0.3s ease, background 0.3s ease;
}

.game-tile:hover {
  transform: translateY(-6px);
  background: rgba(196, 163, 90, 0.12);
}

.game-tile i {
  font-size: 1.6rem;
  color: var(--mm-gold);
  margin-bottom: 0.75rem;
}

.game-tile h4 {
  font-size: 1.15rem;
  color: var(--mm-ivory);
  margin-bottom: 0.35rem;
}

.game-tile p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(247, 243, 235, 0.7);
}

.events-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.event-feature {
  position: relative;
  border-radius: var(--mm-radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--mm-shadow);
}

.event-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.event-feature-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(transparent 30%, rgba(6, 28, 22, 0.88));
  color: var(--mm-ivory);
}

.event-feature-content h3 {
  color: var(--mm-ivory);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.event-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-item {
  background: var(--mm-white);
  border-radius: var(--mm-radius);
  padding: 1.5rem;
  box-shadow: 0 10px 28px rgba(6, 28, 22, 0.07);
  border-left: 3px solid var(--mm-gold);
  transition: transform 0.3s ease;
}

.event-item:hover {
  transform: translateX(6px);
}

.event-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.event-item p {
  margin: 0;
  color: var(--mm-muted);
  font-size: 0.95rem;
}

.event-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mm-emerald-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.experience-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 2.5rem;
}

.xp-block {
  padding: 2rem 1.6rem;
  border-radius: var(--mm-radius);
  background: var(--mm-white);
  box-shadow: 0 12px 32px rgba(6, 28, 22, 0.07);
  border-top: 3px solid var(--mm-gold);
}

.xp-block i {
  font-size: 1.5rem;
  color: var(--mm-emerald-mid);
  margin-bottom: 1rem;
}

.xp-block h3 {
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}

.xp-block p {
  margin: 0;
  color: var(--mm-muted);
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(10, 47, 36, 0.94), rgba(6, 28, 22, 0.9)),
    url('../images/events-ambiance.jpg') center/cover no-repeat;
  border-radius: calc(var(--mm-radius) + 0.35rem);
  padding: 3.5rem 2.5rem;
  color: var(--mm-ivory);
  text-align: center;
  box-shadow: var(--mm-shadow);
}

.contact-band h2 {
  color: var(--mm-ivory);
  margin-bottom: 0.85rem;
}

.contact-band p {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  color: rgba(247, 243, 235, 0.82);
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: rgba(247, 243, 235, 0.1);
  border: 1px solid rgba(196, 163, 90, 0.35);
  color: var(--mm-gold-soft);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-footer {
  background: var(--mm-emerald-deep);
  color: rgba(247, 243, 235, 0.78);
  padding: 4rem 0 2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mm-ivory);
  margin-bottom: 1rem;
}

.footer-brand .brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  font-size: 0.95rem;
}

.site-footer p {
  font-size: 0.92rem;
  max-width: 28rem;
}

.footer-heading {
  font-family: var(--font-display);
  color: var(--mm-gold-soft);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(247, 243, 235, 0.75);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--mm-gold);
}

.footer-disclaimer {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(247, 243, 235, 0.12);
  font-size: 0.8rem;
  color: rgba(247, 243, 235, 0.55);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 243, 235, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(247, 243, 235, 0.55);
}

.age-overlay,
.age-restricted,
.cookie-banner {
  position: fixed;
  z-index: 1080;
}

.age-overlay,
.age-restricted {
  inset: 0;
  background: rgba(6, 28, 22, 0.88);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.age-overlay.is-visible,
.age-restricted.is-visible {
  display: flex;
}

.age-modal {
  width: min(440px, 100%);
  background: var(--mm-ivory);
  border-radius: 1.35rem;
  padding: 2.25rem 2rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.45s ease;
}

.age-modal-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--mm-emerald), var(--mm-emerald-mid));
  color: var(--mm-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.age-modal h2 {
  font-size: 1.85rem;
  margin-bottom: 0.65rem;
}

.age-modal p {
  color: var(--mm-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.age-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-banner {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 480px;
  margin-left: auto;
  background: var(--mm-emerald-deep);
  color: var(--mm-ivory);
  border-radius: 1.15rem;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(196, 163, 90, 0.28);
  display: none;
  z-index: 1070;
}

.cookie-banner.is-visible {
  display: block;
  animation: fadeUp 0.4s ease;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: rgba(247, 243, 235, 0.8);
  margin-bottom: 1rem;
}

.cookie-banner a {
  color: var(--mm-gold-soft);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.policy-hero {
  background: linear-gradient(135deg, var(--mm-emerald-deep), var(--mm-emerald-mid));
  color: var(--mm-ivory);
  padding: 4rem 0 3rem;
}

.policy-hero h1 {
  color: var(--mm-ivory);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.policy-hero p {
  margin: 0;
  color: rgba(247, 243, 235, 0.75);
}

.policy-content {
  padding: 3.5rem 0 4.5rem;
}

.policy-content h2 {
  font-size: 1.65rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p,
.policy-content li {
  color: var(--mm-muted);
}

.policy-content ul {
  padding-left: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .navbar-mm .navbar-collapse {
    background: var(--mm-ivory);
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(10, 47, 36, 0.08);
    box-shadow: 0 12px 30px rgba(6, 28, 22, 0.1);
  }

  .navbar-mm .nav-link::after {
    display: none;
  }

  .navbar-mm .nav-link {
    padding: 0.7rem 0.85rem;
  }

  .menu-card {
    grid-column: span 6;
  }

  .casino-layout,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .games-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-row {
    grid-template-columns: 1fr;
  }

  .hero-ornament {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .menu-card {
    grid-column: span 12;
  }

  .games-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 85vh;
  }

  .contact-band {
    padding: 2.5rem 1.35rem;
  }

  .section {
    padding: 4rem 0;
  }
}
