@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --page-bg: #f7f3ec;
  --surface: #fffaf3;
  --surface-soft: #f1eadf;
  --text: #2f3432;
  --muted: #7b817d;
  --line: rgba(47, 52, 50, 0.12);
  --accent: #b88a55;
  --accent-soft: rgba(184, 138, 85, 0.12);
  --ice: #6a9bad;
  --ice-soft: rgba(106, 155, 173, 0.11);
  --shadow: 0 24px 70px rgba(52, 45, 36, 0.1);
}

/* PAGE */

.menu-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(184, 138, 85, 0.12), transparent 34rem),
    linear-gradient(180deg, #fbf7f0 0%, var(--page-bg) 100%);
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
}

/* HERO */

.menu-hero {
  position: relative;
  text-align: center;
  padding: clamp(5rem, 10vw, 7.5rem) 2rem clamp(2.8rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.menu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(184, 138, 85, 0.16), transparent 70%);
  pointer-events: none;
}

.menu-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.8rem;
}

.menu-kicker::before,
.menu-kicker::after {
  content: '';
  width: 38px;
  height: 1px;
  background: rgba(184, 138, 85, 0.65);
}

.menu-kicker span {
  font-size: 0.55rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.menu-hero h1 {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.95;
  margin: 0 0 1.4rem;
}

.menu-sub {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-hero-rule {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 4rem, 760px);
  margin: 3rem auto 0;
}

.menu-hero-rule::before,
.menu-hero-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.menu-hero-gem,
.ep-rule-gem,
.private-events-rule-gem {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
  margin: 0 14px;
}

/* TABS */

.menu-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 4rem, 420px);
  margin: 3rem auto 0;
  padding: 6px;
  background: rgba(255, 250, 243, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.menu-tab {
  flex: 1;
  border: none;
  border-radius: 999px;
  background: transparent;
  padding: 0.9rem 1.4rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.menu-tab:hover {
  color: var(--text);
}

.menu-tab.active {
  background: var(--text);
  color: var(--surface);
}

.tab-divider {
  width: 1px;
  height: 20px;
  background: var(--line);
}

/* SECTION */

.menu-section {
  width: min(100% - 4rem, 1200px);
  margin: 5rem auto 0;
}

.menu-section.hidden {
  display: none;
}

.menu-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
  margin-bottom: 3.5rem;
}

.section-bar-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.section-bar-kicker {
  font-size: 0.52rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 700;
}

.section-bar-line {
  width: 52px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.section-bar-line--ice {
  background: var(--ice);
}

.section-bar-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-bar-label {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ARROWS */

.nav-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  transition: all 0.25s ease;
  font-family: inherit;
  padding: 0;
}

.nav-arrow:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--surface);
  transform: translateY(-2px);
}

.nav-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

/* GRID */

.menu-grid-wrap {
  width: 100%;
  overflow: hidden;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.8rem, 3vw, 2.8rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-grid.fading {
  opacity: 0;
  transform: translateX(-14px);
}

/* ITEM */

.menu-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1rem;
  border-radius: 26px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  background: rgba(255, 250, 243, 0.72);
  box-shadow: 0 18px 45px rgba(52, 45, 36, 0.08);
  transform: translateY(-6px);
}

.item-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.45rem;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(184, 138, 85, 0.09), transparent 62%),
    rgba(255, 250, 243, 0.45);
}

.item-image img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s ease;
}

.menu-item:hover .item-image img {
  transform: scale(1.06);
}

.item-image-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  border-radius: 18px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 0.65rem;
  line-height: 1.12;
  color: var(--text);
}

.item-desc {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
  flex: 1;
}

.menu-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

/* DIVIDER */

.ep-rule--center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - 4rem, 760px);
  margin: 5rem auto 0;
}

.ep-rule--center::before,
.ep-rule--center::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* CTA */

.menu-cta-section {
  width: min(100% - 4rem, 820px);
  margin: 2rem auto 7rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(3.2rem, 7vw, 5.2rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(184, 138, 85, 0.1), transparent 60%),
    var(--surface);
  box-shadow: var(--shadow);
}

.private-events-rule {
  display: flex;
  align-items: center;
  margin-bottom: 2.8rem;
}

.private-events-rule::before,
.private-events-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.pe-kicker {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.menu-cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  margin: 0 0 1.4rem;
  line-height: 1.08;
}

.menu-cta-section p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 440px;
  margin: 0 auto 2.8rem;
  font-weight: 300;
}

.pe-btn {
  display: inline-block;
  background: var(--text);
  border-radius: 999px;
  padding: 1.15rem 3rem;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--surface);
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.pe-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 138, 85, 0.22);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .menu-item {
    padding: 0.8rem;
  }
}

@media (max-width: 768px) {
  .menu-section,
  .menu-cta-section {
    width: calc(100% - 2rem);
  }

  .menu-section {
    margin-top: 4rem;
  }

  .menu-section-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.4rem;
  }

  .section-bar-right {
    display: none;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }

  .menu-sub {
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .menu-hero {
    padding-inline: 1rem;
  }

  .menu-tabs-nav {
    width: calc(100% - 2rem);
  }

  .menu-tab {
    padding: 0.78rem 1rem;
    font-size: 0.52rem;
  }

  .menu-grid {
    gap: 1rem;
  }

  .menu-item {
    padding: 0.55rem;
    border-radius: 20px;
  }

  .item-image {
    border-radius: 18px;
    margin-bottom: 1rem;
  }

  .item-title {
    font-size: 1.15rem;
  }

  .item-desc {
    font-size: 0.68rem;
    line-height: 1.65;
  }

  .menu-cta-section {
    border-radius: 24px;
    margin-bottom: 5rem;
  }
}