/*
Theme Name: Osteria Cavour
Theme URI: https://example.com/
Author: OpenAI
Description: Tema WordPress custom per Osteria Cavour con stile vintage moderno, layout one-page e sezione prenotazioni.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: osteria-cavour
*/

:root {
  --bg: #efe3d0;
  --bg-soft: #f6efe8;
  --bg-alt: #e8d7c1;
  --brand: #8e2e1c;
  --brand-dark: #2f1b14;
  --text: #34241d;
  --text-soft: #5c463b;
  --white: #ffffff;
  --cream: #f7eee7;
  --shadow: 0 18px 42px rgba(47, 27, 20, 0.12);
  --radius: 28px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 227, 208, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(142, 46, 28, 0.10);
  box-shadow: 0 10px 30px rgba(47, 27, 20, 0.06);
}

.header-inner {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.header-brand-wrap {
  display: flex;
  align-items: center;
}

.branding {
  display: inline-flex;
  align-items: center;
}

.branding img {
  width: 210px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
}

.site-nav ul,
.primary-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--brand-dark);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--brand);
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(142, 46, 28, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(47, 27, 20, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li + li {
  margin-top: 10px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--brand-dark);
  text-align: center;
  border-bottom: 1px solid rgba(142, 46, 28, 0.08);
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(142, 46, 28, 0.18);
}

body.mobile-menu-open {
  overflow: hidden;
}

/* Buttons */

.header-cta,
.btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 22px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 26px rgba(142, 46, 28, 0.18);
}

.header-cta:hover,
.btn:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero */

.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(38, 20, 14, 0.55), rgba(38, 20, 14, 0.55)),
    url('https://www.osteriacavour.com/wp-content/uploads/photo-gallery/sfondohome.jpg') center/cover no-repeat;
}

.hero-inner {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 64px 0;
  position: relative;
}

.language-switch {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.kicker {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #f4d9c7;
  margin-bottom: 16px;
}

#prenotazioni .kicker,
#reservations .kicker {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  text-align: center;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: 0.1em;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 16px;
  color: #f4d9c7;
}

.hero h1,
.section-title,
.info-card h3,
.menu-card__content h3,
.footer-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
}

.hero h1,
.section-title {
  margin: 0;
  line-height: 0.94;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 700;
  text-wrap: balance;
}

.hero h1 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.section-title {
  color: var(--brand-dark);
}

.hero p {
  max-width: 640px;
  font-size: 1.18rem;
  color: #f6eee7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-card {
  background: rgba(248, 241, 234, 0.94);
  color: var(--brand);
  padding: 34px;
  border-radius: 34px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.hero-card .logo-card img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

/* Hours / Cards */

.hours-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.hours-box,
.highlight-box,
.info-card,
.review-card,
.gallery-item,
.contact-card,
.map-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hours-box {
  background: var(--white);
  padding: 18px;
}

.hours-box strong,
.contact-card strong,
.review-source {
  color: var(--brand);
}

.highlight-box {
  grid-column: 1 / -1;
  background: var(--brand);
  color: var(--white);
  padding: 18px;
}

/* Layout */

.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-soft {
  background: var(--bg-soft);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.info-grid,
.menu-grid,
.review-grid,
.gallery-grid,
.contact-grid,
.feature-grid {
  display: grid;
  gap: 22px;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.info-card {
  background: var(--white);
  padding: 36px 30px;
  min-height: 215px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.info-card h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 2.4vw, 2.7rem);
  line-height: 1.02;
  font-weight: 700;
}

.info-card p {
  margin: 0 auto;
  max-width: 24ch;
  font-size: 1.08rem;
  line-height: 1.7;
}

.info-card.brand {
  background: var(--brand);
  color: var(--white);
}

.info-card.brand p {
  color: rgba(255, 255, 255, 0.94);
}

.info-card.wide {
  grid-column: 1 / -1;
  min-height: 185px;
}

.info-card.wide p {
  max-width: 44ch;
}

.section-subtitle,
.lead {
  color: var(--text-soft);
  font-size: 1.08rem;
}

/* Menu cards */

.menu-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 34px;
}

.menu-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 22px 52px rgba(47, 27, 20, 0.18);
}

.menu-card__full-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
}

.menu-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.45s ease;
}

.menu-card:hover .menu-card__image {
  transform: scale(1.06);
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(24, 12, 8, 0.82) 0%,
      rgba(24, 12, 8, 0.62) 36%,
      rgba(24, 12, 8, 0.28) 70%,
      rgba(24, 12, 8, 0.10) 100%
    );
  z-index: 1;
}

.menu-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 24px 24px;
  color: var(--white);
  background:
    linear-gradient(
      to top,
      rgba(18, 10, 7, 0.40) 0%,
      rgba(18, 10, 7, 0.18) 55%,
      rgba(18, 10, 7, 0) 100%
    );
}

.menu-card__content h3 {
  margin: 0 0 10px;
  font-size: 2.25rem;
  line-height: 0.95;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
}

.menu-card__content p {
  margin: 0 0 18px;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  max-width: 95%;
}

.pill {
  display: inline-flex;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  backdrop-filter: blur(6px);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Feature / gallery / booking */

.feature-panel {
  background: var(--brand);
  color: var(--white);
  padding: 36px;
  border-radius: 34px;
  box-shadow: 0 22px 52px rgba(47, 27, 20, 0.2);
}

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

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.booking-panel {
  background: var(--brand-dark);
  color: var(--white);
  padding: 44px;
  border-radius: 40px;
  box-shadow: 0 22px 52px rgba(47, 27, 20, 0.25);
}

.booking-panel p {
  color: #f2e8e1;
}

#prenotazioni .section-title,
#reservations .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  text-align: center;
  line-height: 1.06;
}

#prenotazioni .booking-panel p,
#reservations .booking-panel p {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

/* Reviews / badges */

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.review-card {
  background: var(--white);
  padding: 30px;
}

.review-card p {
  color: var(--text-soft);
}

.badges {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(142, 46, 28, 0.12);
  color: var(--brand);
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(47, 27, 20, 0.08);
}

/* Contacts */

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

.contact-card,
.map-card {
  background: var(--white);
  padding: 34px;
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 430px;
  border-radius: 22px;
}

/* Footer */

.site-footer {
  background: var(--brand-dark);
  color: var(--cream);
  border-top: 1px solid rgba(142, 46, 28, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding: 56px 0;
}

.footer-brand img {
  width: 220px;
}

.footer-title {
  margin-top: 0;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
}

.footer-copy {
  padding-bottom: 22px;
  color: #d5c2b6;
  font-size: 0.95rem;
}

/* Tablet */

@media (max-width: 1100px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner,
  .grid-2,
  .contact-grid,
  .footer-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }
}

/* Mobile / tablet header with hamburger */

@media (max-width: 980px) {
  .header-inner {
    min-height: 82px;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 0;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .branding img {
    width: 185px;
  }

  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
    background: rgba(246, 239, 232, 0.98);
    border-top: 1px solid rgba(142, 46, 28, 0.08);
  }

  .mobile-nav.is-open {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-inner {
    padding: 18px 16px 22px;
  }

  .hero-inner,
  .info-grid,
  .feature-grid,
  .gallery-grid,
  .menu-grid,
  .contact-grid,
  .footer-grid,
  .review-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    text-align: center;
  }

  .hero-card,
  .booking-panel,
  .contact-card,
  .map-card,
  .info-card,
  .review-card {
    padding: 24px;
  }

  .language-switch {
    top: 18px;
    right: 18px;
    gap: 8px;
  }

  .language-switch .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.9rem;
  }

  .hero h1,
  .section-title {
    line-height: 0.98;
  }

  .hero p {
    font-size: 1.05rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  #prenotazioni .kicker,
  #reservations .kicker {
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
  }

  #prenotazioni .section-title,
  #reservations .section-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    line-height: 1.08;
  }

  #prenotazioni .booking-panel p,
  #reservations .booking-panel p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .map-embed {
    min-height: 320px;
  }
}

/* Mobile small */

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    background: rgba(239, 227, 208, 0.95);
    box-shadow: 0 8px 22px rgba(47, 27, 20, 0.05);
  }

  .header-inner {
    min-height: 74px;
    padding: 8px 0;
    gap: 12px;
  }

  .branding img,
  .footer-brand img {
    width: 155px;
    max-width: 68vw;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-nav-inner {
    padding: 16px 14px 20px;
  }

  .mobile-menu a {
    font-size: 1.35rem;
  }

  .mobile-nav-cta {
    min-height: 44px;
    font-size: 0.95rem;
  }

  .site-header {
    position: relative;
  }

  .hero-inner {
    padding: 84px 0 42px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn,
  .header-cta,
  .wp-block-button__link {
    width: 100%;
    min-height: 46px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .kicker {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
  }

  #prenotazioni .kicker,
  #reservations .kicker {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.1;
  }

  #prenotazioni .section-title,
  #reservations .section-title {
    font-size: 2rem;
  }

  .info-card h3,
  .footer-title,
  .menu-card__content h3 {
    font-size: 1.8rem;
  }

  .menu-card {
    min-height: 300px;
  }

  .menu-card__content {
    padding: 22px 18px 18px;
  }

  .menu-card__content h3 {
    font-size: 1.9rem;
  }

  .menu-card__content p {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .feature-panel,
  .booking-panel,
  .contact-card,
  .map-card,
  .review-card,
  .info-card,
  .hero-card {
    border-radius: 24px;
  }

  .footer-grid {
    gap: 18px;
    padding: 42px 0;
  }

  .footer-copy {
    font-size: 0.9rem;
  }

  .map-embed {
    min-height: 260px;
  }
}

/* Popup */

.event-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 22, 18, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 9999;
}

.event-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.event-popup {
  position: relative;
  width: min(620px, 100%);
  background:
    linear-gradient(135deg, rgba(147, 58, 43, 0.92), rgba(83, 31, 24, 0.95)),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: #f8f1e8;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.35s ease;
  border: 1px solid rgba(255, 240, 220, 0.18);
}

.event-popup-overlay.is-visible .event-popup {
  transform: translateY(0) scale(1);
}

.event-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.18),
    rgba(0, 0, 0, 0.45)
  );
  z-index: 0;
}

.event-popup-content {
  position: relative;
  z-index: 1;
  padding: 42px 34px 34px;
  text-align: center;
}

.event-popup-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f1d7b8;
}

.event-popup h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 600;
  color: #fff8f0;
}

.event-popup-text {
  margin: 0 auto 22px;
  max-width: 500px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 248, 240, 0.94);
}

.event-popup-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 26px;
}

.event-popup-details span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.12);
  border: 1px solid rgba(255, 248, 240, 0.18);
  font-size: 0.92rem;
  color: #fff4e8;
}

.event-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.event-popup-btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  background: #f3e3cf;
  color: #6f2c22;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.event-popup-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.event-popup-link {
  color: #fff4e8;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}

.event-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.14);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.event-popup-close:hover {
  background: rgba(255, 248, 240, 0.24);
  transform: rotate(90deg);
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .event-popup-overlay {
    padding: 16px;
  }

  .event-popup-content {
    padding: 34px 22px 26px;
  }

  .event-popup h2 {
    font-size: 2rem;
  }

  .event-popup-text {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .event-popup-details {
    gap: 8px;
  }

  .event-popup-actions {
    flex-direction: column;
  }

  .event-popup-btn,
  .event-popup-link {
    width: 100%;
    text-align: center;
  }
}
  .menu-section--fine-dining {
  padding: 82px 0 88px;
}

.menu-container-narrow {
  max-width: 880px;
}

.menu-intro {
  max-width: 720px;
  margin: 10px auto 0;
  text-align: center;
}

.menu-section--fine-dining .kicker,
.menu-section--fine-dining .section-title,
.menu-section--fine-dining .section-subtitle {
  text-align: center;
  display: block;
}

.menu-block {
  margin-top: 34px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.menu-category {
  margin: 0 0 14px;
  padding-bottom: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1;
  color: var(--brand-dark);
  border-bottom: 1px solid rgba(142, 46, 28, 0.18);
}

.menu-note {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-soft);
  font-style: italic;
}

.menu-item {
  padding: 11px 0 10px;
  border-bottom: 1px solid rgba(142, 46, 28, 0.08);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
}

.menu-item-head h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.34;
  font-weight: 700;
  color: var(--text);
}

.menu-inline-note {
  font-size: 0.88em;
  font-weight: 400;
  opacity: 0.75;
}

.menu-price {
  white-space: nowrap;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
}

.menu-meta {
  margin: 4px 0 0;
  font-size: 0.8rem;
  line-height: 1.3;
  color: rgba(52, 36, 29, 0.64);
  letter-spacing: 0.01em;
}

.menu-download {
  margin-top: 34px;
  text-align: center;
}

@media (max-width: 640px) {
  .menu-section--fine-dining {
    padding: 64px 0 70px;
  }

  .menu-category {
    font-size: 1.85rem;
    margin-bottom: 12px;
  }

  .menu-item {
    padding: 10px 0 9px;
  }

  .menu-item-head {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .menu-item-head h4 {
    font-size: 0.96rem;
    line-height: 1.32;
  }

  .menu-price {
    font-size: 1.08rem;
  }

  .menu-meta {
    font-size: 0.76rem;
  }
  .contact-main-title {
  font-size: clamp(2.0rem, 4.0vw, 3.6rem);
  color: #6f2c22 !important;
  margin-bottom: 20px;
}
}