:root {
  --ink: #161311;
  --ink-soft: #5c564f;
  --pearl: #f5f2ec;
  --pearl-deep: #ebe6dc;
  --gold: #b8955f;
  --gold-bright: #d4b57a;
  --espresso: #1c1814;
  --smoke: rgba(22, 19, 17, 0.08);
  --line: rgba(22, 19, 17, 0.12);
  --white: #ffffff;
  --max: 1140px;
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(184, 149, 95, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(28, 24, 20, 0.04), transparent 50%),
    var(--pearl);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

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

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

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

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.theme-light {
  background: rgba(245, 242, 236, 0.92);
  border-bottom-color: var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1002;
  width: min(100% - 2.5rem, var(--max));
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.3s;
}

.site-header.is-scrolled .logo,
.site-header.theme-light .logo {
  color: var(--ink);
}

.logo em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 500;
}

.site-header.is-scrolled .logo em,
.site-header.theme-light .logo em {
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s;
}

.site-header.is-scrolled .nav a,
.site-header.theme-light .nav a {
  color: var(--ink-soft);
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold-bright);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a.is-active,
.site-header.theme-light .nav a:hover,
.site-header.theme-light .nav a.is-active {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1003;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--white);
  transition: 0.3s var(--ease);
}

.site-header.is-scrolled .menu-toggle span,
.site-header.theme-light .menu-toggle span {
  background: var(--ink);
}

body.nav-locked {
  overflow: hidden;
  touch-action: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 20s var(--ease) forwards;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 19, 17, 0.35) 0%, rgba(22, 19, 17, 0.15) 40%, rgba(22, 19, 17, 0.78) 100%),
    radial-gradient(ellipse at 70% 80%, rgba(184, 149, 95, 0.2), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 5rem) 0 5.5rem;
  max-width: 720px;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.15s forwards;
}

.brand-mark em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  max-width: 18ch;
  margin-bottom: 1rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.35s forwards;
}

.hero-lead {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  max-width: 40ch;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: rise 1s var(--ease) 0.65s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.55rem;
  border: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn-ink {
  background: var(--espresso);
  color: var(--pearl);
}

.btn-ink:hover {
  background: var(--ink);
}

.btn-light {
  background: var(--pearl-deep);
  color: var(--ink);
}

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

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

.section-ink {
  background: var(--espresso);
  color: var(--pearl);
}

.section-soft {
  background: rgba(235, 230, 220, 0.55);
}

.section-head {
  max-width: 560px;
  margin-bottom: 2.75rem;
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-head h2,
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.05rem;
}

.section-ink .section-head p {
  color: rgba(245, 242, 236, 0.72);
}

/* Venues */
.venue-list {
  display: grid;
  gap: 1.5rem;
}

.venue-row {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 1rem;
  align-items: stretch;
}

.venue-main {
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) 1.15fr;
  gap: 0;
  min-height: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.venue-main img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.venue-row:hover .venue-main img {
  transform: scale(1.04);
}

.venue-body {
  padding: 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venue-num {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.45rem;
}

.venue-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.55rem;
}

.venue-body p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.venue-meta {
  display: grid;
  gap: 0.25rem;
  font-size: 0.84rem;
  color: var(--ink);
  font-weight: 400;
}

.venue-meta a {
  color: var(--gold);
  transition: color 0.2s;
}

.venue-meta a:hover {
  color: var(--ink);
}

.rating-box {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(184, 149, 95, 0.12), transparent 60%),
    var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.55rem;
  padding: 1rem 0.75rem;
}

.rating-box h3 {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.review-card {
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold);
}

.review-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: grayscale(20%);
}

.review-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.review-card .name {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* CTA rental */
.cta-rental {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 340px;
  background: var(--espresso);
  color: var(--pearl);
  overflow: hidden;
  border: 1px solid rgba(184, 149, 95, 0.22);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}

.cta-rental:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 149, 95, 0.55);
}

.cta-rental-media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.cta-rental-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

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

.cta-rental-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(28, 24, 20, 0.55) 100%);
  pointer-events: none;
}

.cta-rental-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.75rem 2.5rem;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(184, 149, 95, 0.18), transparent 55%),
    var(--espresso);
}

.cta-rental-inner .eyebrow {
  margin-bottom: 1rem;
}

.cta-rental h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  color: var(--pearl);
}

.cta-rental p {
  font-weight: 300;
  color: rgba(245, 242, 236, 0.72);
  margin-bottom: 1.6rem;
  max-width: 28ch;
  font-size: 1rem;
  line-height: 1.55;
}

.cta-rental .link-line {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(212, 181, 122, 0.45);
  width: fit-content;
  transition: gap 0.3s var(--ease), border-color 0.3s, color 0.3s;
}

.cta-rental:hover .link-line {
  gap: 0.85rem;
  border-bottom-color: var(--gold-bright);
  color: var(--pearl);
}

/* Type / casino rows */
.type-banner {
  text-align: center;
  padding: 1.35rem 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(184, 149, 95, 0.35);
  background:
    linear-gradient(135deg, rgba(184, 149, 95, 0.14), transparent 55%),
    var(--white);
}

.type-banner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.type-list {
  display: grid;
  gap: 1.15rem;
}

.type-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  color: inherit;
  transition: border-color 0.3s, transform 0.35s var(--ease), box-shadow 0.35s;
}

a.type-row:hover {
  border-color: rgba(184, 149, 95, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(22, 19, 17, 0.08);
}

.type-thumb {
  position: relative;
  overflow: hidden;
  min-height: 168px;
}

.type-thumb img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

a.type-row:hover .type-thumb img {
  transform: scale(1.05);
}

.type-thumb .label {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(28, 24, 20, 0.88);
  color: var(--gold-bright);
  padding: 0.35rem 0.65rem;
  font-weight: 500;
}

.type-copy {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(184, 149, 95, 0.06), transparent 50%),
    var(--pearl);
}

.type-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.type-copy p {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0.85rem;
  max-width: 48ch;
  font-size: 0.95rem;
}

.type-copy .link-line {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Email band */
.email-band {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.email-band p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  color: rgba(245, 242, 236, 0.92);
}

.email-band a {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(212, 181, 122, 0.45);
  transition: color 0.25s, border-color 0.25s;
}

.email-band a:hover {
  color: var(--pearl);
  border-bottom-color: var(--pearl);
}

/* Footer */
.site-footer {
  background: var(--espresso);
  color: rgba(245, 242, 236, 0.72);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.15fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 242, 236, 0.12);
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  color: var(--pearl);
  margin-bottom: 0.75rem;
}

.footer-brand em {
  font-style: italic;
  color: var(--gold-bright);
}

.footer-grid > div > p {
  font-size: 0.92rem;
  font-weight: 300;
  max-width: 30ch;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0.55rem;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(245, 242, 236, 0.5);
}

/* Inner pages */
.page-pad {
  padding: calc(var(--nav-h) + 3.5rem) 0 4rem;
}

.page-intro {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.page-intro h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-intro p {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-aside {
  padding-top: 0.25rem;
}

.contact-aside h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-aside p {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.contact-aside a {
  color: var(--gold);
}

.form-panel {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 95, 0.15);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

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

.legal-content .updated {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  margin: 1.75rem 0 0.55rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  padding-left: 1.15rem;
  margin-bottom: 1rem;
}

.legal-content li {
  list-style: disc;
}

.legal-content a {
  color: var(--gold);
}

/* Cookie + popup */
.cookie-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1100;
  max-width: 420px;
  margin-left: auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 24px 60px rgba(22, 19, 17, 0.14);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: 0.45s var(--ease);
}

.cookie-banner.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1rem;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(22, 19, 17, 0.55);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}

.popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: var(--pearl);
  width: min(100%, 400px);
  padding: 2.25rem 1.75rem;
  text-align: center;
}

.popup h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}

.popup p {
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.35rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@media (max-width: 960px) {
  .venue-main,
  .type-row,
  .footer-grid,
  .contact-grid,
  .reviews-grid,
  .cta-rental {
    grid-template-columns: 1fr;
  }

  .venue-main img,
  .type-thumb,
  .type-thumb img,
  .cta-rental-media,
  .cta-rental-media img {
    min-height: 220px;
  }

  .cta-rental-media::after {
    background: linear-gradient(180deg, transparent 40%, rgba(28, 24, 20, 0.5) 100%);
  }

  .cta-rental-inner {
    padding: 2rem 1.5rem 2.25rem;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: var(--espresso);
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    z-index: 1001;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s var(--ease), visibility 0.4s;
  }

  .nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav a {
    color: var(--pearl) !important;
    font-size: 1rem;
  }

  .site-header.menu-open .logo {
    color: var(--pearl);
  }

  .site-header.menu-open .menu-toggle span {
    background: var(--pearl);
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .venue-row {
    grid-template-columns: 1fr;
  }

  .rating-box {
    min-height: 90px;
    flex-direction: row;
    gap: 1rem;
  }

  .hero-content {
    padding-bottom: 3.5rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
