:root {
  --ms-emerald: #0b3d2e;
  --ms-emerald-deep: #06261c;
  --ms-emerald-mid: #145c45;
  --ms-gold: #c9a227;
  --ms-gold-bright: #e0bf4a;
  --ms-gold-muted: #a8872a;
  --ms-ivory: #f5f0e6;
  --ms-cream: #ebe4d4;
  --ms-charcoal: #141414;
  --ms-ink: #1e1e1e;
  --ms-muted: #6b6b6b;
  --ms-white: #ffffff;
  --ms-overlay: rgba(6, 38, 28, 0.82);
  --ms-radius: 0.35rem;
  --ms-shadow: 0 18px 48px rgba(6, 38, 28, 0.22);
  --ms-font-display: "Marcellus", Georgia, serif;
  --ms-font-body: "Jost", "Segoe UI", sans-serif;
  --ms-transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ms-font-body);
  font-weight: 400;
  color: var(--ms-ink);
  background: var(--ms-ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ms-gold);
  text-decoration: none;
  transition: color var(--ms-transition), opacity var(--ms-transition);
}

a:hover {
  color: var(--ms-gold-bright);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ms-font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ms-emerald-deep);
}

.topbar {
  background: var(--ms-emerald-deep);
  color: var(--ms-cream);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
}

.topbar i {
  color: var(--ms-gold);
  margin-right: 0.4rem;
}

.site-navbar {
  background: var(--ms-white);
  border-bottom: 1px solid rgba(11, 61, 46, 0.1);
  padding: 0.85rem 0;
  position: relative;
  z-index: 100;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ms-emerald-deep);
  text-decoration: none;
}

.brand-lockup:hover {
  color: var(--ms-emerald-mid);
}

.brand-mark {
  width: 2.65rem;
  height: 2.65rem;
  border: 1.5px solid var(--ms-gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--ms-emerald), var(--ms-emerald-deep));
  color: var(--ms-gold);
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text .brand-name {
  font-family: var(--ms-font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ms-emerald-deep);
}

.brand-text .brand-tag {
  font-family: var(--ms-font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ms-gold-muted);
  margin-top: 0.15rem;
}

.navbar-nav .nav-link {
  font-family: var(--ms-font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--ms-ink) !important;
  padding: 0.55rem 0.7rem !important;
  position: relative;
  transition: color var(--ms-transition);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 1.5px;
  background: var(--ms-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ms-transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--ms-emerald) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid rgba(11, 61, 46, 0.25);
  border-radius: var(--ms-radius);
  padding: 0.45rem 0.65rem;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(201, 162, 39, 0.35) !important;
}

.navbar-toggler-icon-custom {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 1.35rem;
}

.navbar-toggler-icon-custom span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ms-emerald-deep);
  border-radius: 2px;
  transition: transform var(--ms-transition), opacity var(--ms-transition);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  background-color: var(--ms-emerald-deep);
  background-image:
    linear-gradient(105deg, rgba(6, 38, 28, 0.92) 0%, rgba(6, 38, 28, 0.78) 42%, rgba(6, 38, 28, 0.45) 100%),
    url("../images/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  color: var(--ms-ivory);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.12), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-ornament {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 50%;
  right: -60px;
  top: 12%;
  pointer-events: none;
  z-index: 1;
}

.hero-ornament::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 4.5rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ms-gold-bright);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--ms-gold);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  color: var(--ms-white);
  margin-bottom: 1.15rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(245, 240, 230, 0.95);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--ms-gold), var(--ms-gold-muted));
  color: var(--ms-emerald-deep) !important;
  border: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.9rem 1.65rem;
  border-radius: var(--ms-radius);
  transition: transform var(--ms-transition), box-shadow var(--ms-transition), filter var(--ms-transition);
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  color: var(--ms-emerald-deep) !important;
  box-shadow: 0 14px 34px rgba(201, 162, 39, 0.38);
}

.btn-outline-ivory {
  background: transparent;
  color: var(--ms-ivory) !important;
  border: 1px solid rgba(245, 240, 230, 0.55);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.9rem 1.65rem;
  border-radius: var(--ms-radius);
  transition: background var(--ms-transition), border-color var(--ms-transition), transform var(--ms-transition);
}

.btn-outline-ivory:hover {
  background: rgba(245, 240, 230, 0.1);
  border-color: var(--ms-gold);
  color: var(--ms-white) !important;
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(245, 240, 230, 0.18);
}

.hero-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.hero-meta-item i {
  color: var(--ms-gold);
  font-size: 1.15rem;
  margin-top: 0.15rem;
}

.hero-meta-item strong {
  display: block;
  font-family: var(--ms-font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ms-white);
}

.hero-meta-item span {
  font-size: 0.82rem;
  color: rgba(245, 240, 230, 0.7);
}

.section {
  padding: 5rem 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ms-gold-muted);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--ms-muted);
  max-width: 38rem;
  margin-bottom: 0;
}

.pillars {
  background: linear-gradient(180deg, var(--ms-ivory) 0%, var(--ms-cream) 100%);
}

.pillar {
  height: 100%;
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--ms-gold);
  background: transparent;
  transition: transform var(--ms-transition), background var(--ms-transition);
}

.pillar:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.55);
}

.pillar-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ms-emerald);
  color: var(--ms-gold);
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}

.pillar h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.pillar p {
  color: var(--ms-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.split-experience {
  background: var(--ms-emerald-deep);
  color: var(--ms-ivory);
  position: relative;
  overflow: hidden;
}

.split-experience::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.12);
  right: -120px;
  bottom: -140px;
  pointer-events: none;
}

.split-experience .section-title {
  color: var(--ms-white);
}

.split-experience .section-lead {
  color: rgba(245, 240, 230, 0.75);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.12);
  font-size: 0.98rem;
}

.feature-list li i {
  color: var(--ms-gold);
  margin-top: 0.2rem;
}

.visual-panel {
  position: relative;
  min-height: 380px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--ms-shadow);
  background:
    linear-gradient(160deg, rgba(11, 61, 46, 0.35), rgba(6, 38, 28, 0.7)),
    url("../images/jeux-table.jpg") center / cover no-repeat;
}

.visual-panel-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: rgba(6, 38, 28, 0.88);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--ms-ivory);
  padding: 1rem 1.25rem;
  max-width: 230px;
}

.visual-panel-badge strong {
  display: block;
  font-family: var(--ms-font-display);
  font-size: 1.2rem;
  color: var(--ms-gold-bright);
  margin-bottom: 0.25rem;
}

.visual-panel-badge span {
  font-size: 0.82rem;
  color: rgba(245, 240, 230, 0.8);
}

.cuisine-section {
  background: var(--ms-white);
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: var(--ms-shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.media-frame-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(6, 38, 28, 0.9);
  color: var(--ms-gold-bright);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
}

.taste-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.taste-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
  color: var(--ms-muted);
}

.taste-list li i {
  color: var(--ms-emerald);
  margin-top: 0.2rem;
}

.journey-section {
  background: linear-gradient(180deg, var(--ms-cream) 0%, var(--ms-ivory) 100%);
}

.journey-step {
  text-align: center;
  padding: 1.5rem 1rem;
  height: 100%;
}

.journey-num {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1.1rem;
  border: 1px solid var(--ms-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ms-font-display);
  color: var(--ms-emerald-deep);
  font-size: 1.15rem;
  background: var(--ms-white);
}

.journey-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.journey-step p {
  color: var(--ms-muted);
  font-size: 0.94rem;
  margin-bottom: 0;
}

.gallery-section {
  background: var(--ms-ivory);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.45rem;
  min-height: 280px;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--ms-transition);
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(6, 38, 28, 0.92));
  color: var(--ms-ivory);
}

.gallery-card-overlay h3 {
  color: var(--ms-white);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.gallery-card-overlay p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(245, 240, 230, 0.8);
}

.events-preview {
  background: var(--ms-white);
}

.event-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(11, 61, 46, 0.1);
}

.event-row:last-child {
  border-bottom: none;
}

.event-date {
  flex-shrink: 0;
  width: 4.5rem;
  text-align: center;
  background: var(--ms-emerald);
  color: var(--ms-gold-bright);
  padding: 0.7rem 0.4rem;
  border-radius: var(--ms-radius);
}

.event-date .day {
  display: block;
  font-family: var(--ms-font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.event-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.event-body p {
  color: var(--ms-muted);
  margin-bottom: 0.45rem;
  font-size: 0.94rem;
}

.event-meta {
  font-size: 0.8rem;
  color: var(--ms-gold-muted);
  letter-spacing: 0.04em;
}

.responsible-band {
  background: var(--ms-emerald-deep);
  color: rgba(245, 240, 230, 0.88);
  padding: 3rem 0;
}

.responsible-band h2 {
  color: var(--ms-white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}

.responsible-band p {
  margin-bottom: 0;
  max-width: 40rem;
  color: rgba(245, 240, 230, 0.78);
}

.responsible-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cta-band {
  background:
    linear-gradient(100deg, var(--ms-emerald) 0%, var(--ms-emerald-deep) 55%, #0d4735 100%);
  color: var(--ms-ivory);
  padding: 4rem 0;
  position: relative;
}

.cta-band h2 {
  color: var(--ms-white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(245, 240, 230, 0.8);
  margin-bottom: 0;
  max-width: 32rem;
}

.site-footer {
  background: var(--ms-charcoal);
  color: rgba(245, 240, 230, 0.75);
  padding: 3.5rem 0 1.75rem;
  font-size: 0.92rem;
}

.site-footer h4 {
  color: var(--ms-gold);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
}

.site-footer a {
  color: rgba(245, 240, 230, 0.75);
}

.site-footer a:hover {
  color: var(--ms-gold-bright);
}

.footer-brand .brand-name {
  color: var(--ms-ivory);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-disclaimer {
  margin-top: 2.25rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(245, 240, 230, 0.62);
}

.footer-disclaimer strong {
  color: var(--ms-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--ms-font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.footer-disclaimer p {
  margin-bottom: 0.65rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.1);
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(245, 240, 230, 0.55);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
}

.footer-legal a {
  color: rgba(245, 240, 230, 0.55);
}

.footer-legal a:hover {
  color: var(--ms-gold-bright);
}

body.gate-locked {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(6, 38, 28, 0.88);
  backdrop-filter: blur(6px);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-card {
  width: 100%;
  max-width: 420px;
  background: var(--ms-ivory);
  border: 1px solid rgba(201, 162, 39, 0.45);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--ms-shadow);
}

.age-gate-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid var(--ms-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-gold-muted);
  background: var(--ms-emerald-deep);
  font-size: 1.2rem;
}

.age-gate-card h2 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.age-gate-card p {
  color: var(--ms-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.age-gate-actions .btn {
  width: 100%;
}

.btn-decline {
  background: transparent;
  border: 1px solid rgba(11, 61, 46, 0.25);
  color: var(--ms-emerald-deep) !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.85rem 1.25rem;
  border-radius: var(--ms-radius);
}

.btn-decline:hover {
  border-color: var(--ms-emerald);
  background: rgba(11, 61, 46, 0.05);
  color: var(--ms-emerald-deep) !important;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  max-width: 720px;
  margin: 0 auto;
  background: var(--ms-charcoal);
  color: rgba(245, 240, 230, 0.88);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-consent a {
  color: var(--ms-gold-bright);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-actions .btn {
  font-size: 0.75rem;
  padding: 0.65rem 1.1rem;
}

.page-hero {
  background:
    linear-gradient(110deg, rgba(6, 38, 28, 0.94), rgba(11, 61, 46, 0.78)),
    url("../images/salon-prive.jpg") center / cover no-repeat;
  color: var(--ms-ivory);
  padding: 4.5rem 0 3.5rem;
}

.page-hero.page-hero-casino {
  background:
    linear-gradient(110deg, rgba(6, 38, 28, 0.94), rgba(11, 61, 46, 0.75)),
    url("../images/jeux-table.jpg") center / cover no-repeat;
}

.page-hero.page-hero-menu {
  background:
    linear-gradient(110deg, rgba(6, 38, 28, 0.94), rgba(11, 61, 46, 0.75)),
    url("../images/cuisine-signature.jpg") center / cover no-repeat;
}

.page-hero .section-eyebrow {
  color: var(--ms-gold-bright);
}

.page-hero h1 {
  color: var(--ms-white);
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 0.85rem;
}

.page-hero p {
  max-width: 36rem;
  margin: 0;
  color: rgba(245, 240, 230, 0.88);
}

.page-section {
  padding: 4.5rem 0;
}

.content-block h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.content-block h3 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
}

.content-block p,
.content-block li {
  color: var(--ms-muted);
}

.content-block ul {
  padding-left: 1.15rem;
}

.menu-group {
  margin-bottom: 2.75rem;
}

.menu-group:last-child {
  margin-bottom: 0;
}

.menu-group h2 {
  font-size: 1.55rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.45);
  padding-bottom: 0.65rem;
  margin-bottom: 0.85rem;
}

.menu-item {
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(11, 61, 46, 0.1);
}

.menu-item-top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  width: 100%;
}

.menu-item-top h3 {
  font-size: 1.08rem;
  margin: 0;
  flex: 0 1 auto;
  max-width: 70%;
}

.menu-item-dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(11, 61, 46, 0.35);
  transform: translateY(-0.28em);
  min-width: 1.25rem;
  height: 0;
}

.menu-item p {
  margin: 0.35rem 0 0;
  color: var(--ms-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  padding-right: 3.5rem;
}

.menu-price {
  font-family: var(--ms-font-display);
  color: var(--ms-emerald);
  white-space: nowrap;
  font-size: 1.08rem;
  flex: 0 0 auto;
}

.menu-layout .menu-aside {
  position: sticky;
  top: 1.5rem;
}

.menu-layout .media-frame {
  margin-top: 0;
}

.menu-layout .media-frame img {
  min-height: 280px;
  height: 280px;
  width: 100%;
  object-fit: cover;
}

.menu-layout .info-tile {
  margin-top: 1.25rem;
  background: var(--ms-white);
  box-shadow: 0 10px 28px rgba(6, 38, 28, 0.06);
}

@media (max-width: 991.98px) {
  .menu-layout .menu-aside {
    position: static;
    margin-bottom: 0.5rem;
  }

  .menu-layout .media-frame {
    margin-top: 0;
  }

  .menu-item p {
    padding-right: 0;
  }
}

.info-tile {
  height: auto;
  padding: 1.75rem 1.4rem;
  border-top: 2px solid var(--ms-gold);
  background: var(--ms-white);
}

.info-tile i {
  color: var(--ms-gold-muted);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.info-tile h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.info-tile p {
  color: var(--ms-muted);
  margin-bottom: 0;
  font-size: 0.94rem;
}

.info-tile a {
  color: var(--ms-emerald);
  font-weight: 500;
}

.legal-page {
  background: var(--ms-ivory);
}

.legal-page .content-block {
  max-width: 760px;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--ms-white);
    margin-top: 0.85rem;
    padding: 0.75rem;
    border: 1px solid rgba(11, 61, 46, 0.1);
    border-radius: var(--ms-radius);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0.85rem !important;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-ornament {
    display: none;
  }

  .visual-panel,
  .media-frame {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    text-align: center;
  }

  .brand-text .brand-name {
    font-size: 1.15rem;
  }

  .hero-content {
    padding: 3.25rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-meta {
    flex-direction: column;
    gap: 1.1rem;
  }

  .section {
    padding: 3.75rem 0;
  }

  .media-frame img,
  .gallery-card img {
    min-height: 240px;
    height: 240px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}
