.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-bottom: 0.7rem;
  margin-bottom: -0.7rem;
}

.nav-dropdown::after {
  position: absolute;
  left: -0.4rem;
  right: -0.4rem;
  top: 100%;
  height: 0.9rem;
  content: "";
}

.nav-dropdown summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  color: #5f6764;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
  transition:
    color 170ms ease,
    transform 170ms ease;
}

.nav-dropdown__current-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  max-width: 8.5rem;
  padding: 0.28rem 0.62rem;
  color: #0d3b41;
  border-radius: 999px;
  background: rgba(126, 163, 171, 0.16);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::before {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #0d3b41, #8fb1b8);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.nav-dropdown summary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.2rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transition:
    border-color 190ms ease,
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: rotate(45deg);
}

.nav-dropdown[open] summary,
.nav-dropdown[data-open="true"] summary,
.nav-dropdown:hover summary,
.nav-dropdown:focus-within summary,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.nav-dropdown.is-active summary {
  color: #0d3b41;
  transform: translateY(-1px);
}

.nav-dropdown[open] summary::before,
.nav-dropdown[data-open="true"] summary::before,
.nav-dropdown:hover summary::before,
.nav-dropdown:focus-within summary::before,
.nav-dropdown summary:hover::before,
.nav-dropdown summary:focus-visible::before,
.nav-dropdown.is-active summary::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dropdown[open] summary::after,
.nav-dropdown[data-open="true"] summary::after,
.nav-dropdown:hover summary::after,
.nav-dropdown:focus-within summary::after {
  transform: translateY(0.1rem) rotate(225deg);
}

.nav-dropdown summary:focus-visible {
  border-radius: 2px;
  outline: 3px solid rgba(126, 163, 170, 0.45);
  outline-offset: 0.35rem;
}

.nav-dropdown__menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.2rem);
  z-index: 80;
  display: grid;
  overflow: hidden;
  min-width: 14.5rem;
  gap: 0.2rem;
  padding: 0.55rem;
  border: 1px solid rgba(13, 59, 65, 0.14);
  border-radius: 0.9rem;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 1.3rem 3.4rem rgba(13, 59, 65, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-0.35rem) scale(0.96);
  transform-origin: top center;
  transition:
    opacity 180ms ease,
    transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-dropdown:not([open]):not(:hover):not(:focus-within) .nav-dropdown__menu {
  visibility: hidden;
}

.nav-dropdown[open] .nav-dropdown__menu,
.nav-dropdown[data-open="true"] .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
  visibility: visible;
}

.restaurant-header {
  position: relative;
}

.restaurant-header__topbar {
  height: 2.35rem;
}

.restaurant-header__inner {
  width: min(1320px, calc(100% - 2rem));
  grid-template-columns: minmax(0, 1.08fr) auto minmax(0, 1.08fr);
  gap: clamp(1rem, 2.2vw, 2.2rem);
}

.restaurant-header__nav-block {
  min-width: 0;
}

.restaurant-nav {
  flex-wrap: nowrap;
  gap: clamp(0.68rem, 1.15vw, 1.2rem);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  white-space: nowrap;
}

.restaurant-header__contact-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  column-gap: clamp(0.85rem, 1.5vw, 1.35rem);
  justify-items: end;
}

.restaurant-nav--right {
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.restaurant-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.restaurant-header__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.75rem 1.25rem;
  color: #fff;
  border: 1px solid #123f45;
  border-radius: 999px;
  background: #123f45;
  box-shadow: 0 1rem 2rem rgba(13, 59, 65, 0.2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.restaurant-header__action-button:hover,
.restaurant-header__action-button:focus-visible {
  color: #fff;
  background: #123f45;
  border-color: #123f45;
  box-shadow:
    0 1.1rem 2.4rem rgba(13, 59, 65, 0.24),
    0 0 0 4px rgba(126, 163, 170, 0.14);
  transform: translateY(-1px);
}

.restaurant-header__action-button--secondary {
  color: #123f45;
  border-color: rgba(18, 63, 69, 0.28);
  background: transparent;
  box-shadow: none;
}

.restaurant-header__action-button--secondary:hover,
.restaurant-header__action-button--secondary:focus-visible {
  color: #fff;
  border-color: #123f45;
  background: #123f45;
}

.restaurant-header__contact-block .restaurant-header__line {
  grid-column: 1 / -1;
  width: 100%;
}

.restaurant-header__contacts {
  position: absolute;
  top: 0;
  right: max(1rem, calc((100vw - 1320px) / 2));
  z-index: 90;
  height: 2.35rem;
  min-height: 0;
  gap: 1.05rem;
  color: #fff;
}

.restaurant-header__contact {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
}

.restaurant-header__contact:hover,
.restaurant-header__contact:focus-visible {
  color: #fff;
}

.restaurant-header__contact svg {
  width: 1.45rem;
  height: 1.45rem;
  padding: 0.32rem;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.restaurant-header__contact:hover svg,
.restaurant-header__contact:focus-visible svg {
  color: #0d3b41;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.restaurant-header__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 2.7rem;
  padding: 0.75rem 1.25rem;
  color: #fff;
  border: 1px solid #0d3b41;
  border-radius: 999px;
  background: #0d3b41;
  box-shadow: 0 1rem 2rem rgba(13, 59, 65, 0.2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.restaurant-header__reserve:hover,
.restaurant-header__reserve:focus-visible {
  color: #fff;
  background: #0a3035;
  border-color: #0a3035;
  box-shadow:
    0 1.1rem 2.4rem rgba(13, 59, 65, 0.24),
    0 0 0 4px rgba(126, 163, 170, 0.14);
  transform: translateY(-1px);
}

.restaurant-header__reserve:focus-visible {
  outline: 3px solid rgba(126, 163, 170, 0.45);
  outline-offset: 0.25rem;
}

.restaurant-nav .nav-dropdown__menu a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 0.65rem;
  color: #42514f;
  font-size: 0.95rem;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-0.25rem);
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    color 160ms ease,
    background 160ms ease;
}

.restaurant-nav .nav-dropdown__menu a::after {
  display: none;
}

.restaurant-nav .nav-dropdown__menu a:hover,
.restaurant-nav .nav-dropdown__menu a:focus-visible {
  color: #0d3b41;
  background: rgba(126, 163, 170, 0.14);
  transform: none;
}

.restaurant-nav .nav-dropdown__menu a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, #0d3b41, #14515a);
  box-shadow: 0 0.9rem 2rem rgba(13, 59, 65, 0.16);
}

.nav-dropdown[open] .nav-dropdown__menu a,
.nav-dropdown[data-open="true"] .nav-dropdown__menu a,
.nav-dropdown:hover .nav-dropdown__menu a,
.nav-dropdown:focus-within .nav-dropdown__menu a {
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown[open] .nav-dropdown__menu a:nth-child(2),
.nav-dropdown[data-open="true"] .nav-dropdown__menu a:nth-child(2),
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(2),
.nav-dropdown:focus-within .nav-dropdown__menu a:nth-child(2) {
  transition-delay: 25ms;
}

.nav-dropdown[open] .nav-dropdown__menu a:nth-child(3),
.nav-dropdown[data-open="true"] .nav-dropdown__menu a:nth-child(3),
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(3),
.nav-dropdown:focus-within .nav-dropdown__menu a:nth-child(3) {
  transition-delay: 50ms;
}

.nav-dropdown[open] .nav-dropdown__menu a:nth-child(4),
.nav-dropdown[data-open="true"] .nav-dropdown__menu a:nth-child(4),
.nav-dropdown:hover .nav-dropdown__menu a:nth-child(4),
.nav-dropdown:focus-within .nav-dropdown__menu a:nth-child(4) {
  transition-delay: 75ms;
}

.event-page {
  color: #171615;
  background:
    radial-gradient(circle at top left, rgba(126, 163, 171, 0.12), transparent 34rem),
    linear-gradient(180deg, #fbf8f2 0%, #f8f4ee 34rem, #f7f1e8 100%);
  font-family: "Manrope", Arial, sans-serif;
}

.event-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 6rem);
}

.event-hero__copy {
  display: grid;
  gap: 0;
  align-self: start;
  padding-top: 0;
}

.event-hero__label,
.event-section__label {
  margin: 0 0 0.85rem;
  color: #7ea3ab;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-hero h1,
.event-section h2 {
  margin: 0;
  color: #0d3b41;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.92;
}

.event-hero h1 {
  font-size: clamp(4rem, 9vw, 8rem);
}

.event-hero h1 + p {
  margin-top: 1.15rem;
}

.event-hero p:not(.event-hero__label),
.event-section p:not(.event-section__label) {
  margin: 0;
  color: #67625b;
  font-size: 1.05rem;
  line-height: 1.85;
}

.event-hero__copy > p:not(.event-hero__label) {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.event-hero__actions,
.event-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.event-hero__image {
  position: relative;
  align-self: start;
  min-height: clamp(28rem, 48vw, 42rem);
  overflow: hidden;
  border-radius: 0 7rem 0 0;
  box-shadow: 0 1.4rem 4rem rgba(23, 22, 21, 0.11);
}

.event-hero__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.event-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  border-top: 1px solid rgba(13, 59, 65, 0.12);
}

.event-section h2 {
  font-size: clamp(3rem, 5.5vw, 5rem);
}

.event-section__intro {
  display: grid;
  align-content: start;
  gap: 0;
  max-width: 32rem;
}

.event-section__intro h2 + p,
.event-section__lead {
  margin-top: 1rem;
}

.event-section__lead {
  display: grid;
  gap: 0.6rem;
  padding-top: 0.4rem;
}

.event-section__lead h3 {
  margin: 0;
  color: #0d3b41;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.event-feature-list {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.event-feature-list article {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(13, 59, 65, 0.12);
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.92), rgba(239, 231, 220, 0.54)),
    rgba(255, 250, 244, 0.7);
}

.event-feature-list h3 {
  margin: 0 0 0.35rem;
  color: #171615;
  font-size: 1rem;
  line-height: 1.35;
}

.event-highlight-band {
  width: 100%;
  margin: clamp(2rem, 5vw, 4rem) 0;
  background: #0d3b41;
  color: #fff;
}

.event-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.event-highlight-band__inner {
  width: min(72rem, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 7rem) 0;
}

.event-highlight__content {
  display: grid;
  gap: 1rem;
}

.event-highlight h2,
.event-menu h2,
.event-dates h2 {
  margin: 0;
  color: #0d3b41;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 600;
  line-height: 0.94;
}

.event-highlight h2 {
  color: #fff;
}

.event-highlight__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
}

.event-highlight__content strong {
  color: #fff;
}

.event-highlight__content .event-section__label {
  color: #7ea3ab;
}

.event-highlight__gallery {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr;
  align-items: end;
  gap: 1rem;
  min-height: 33rem;
}

.event-highlight__gallery img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.22);
}

.event-highlight__gallery img:first-child {
  height: 33rem;
  border-radius: 8rem 0 0 0;
}

.event-highlight__gallery img:last-child {
  height: 23rem;
  margin-bottom: 2rem;
  border: 0.7rem solid #0d3b41;
}

.event-menu,
.event-dates {
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.4rem);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(13, 59, 65, 0.12);
}

.event-menu__intro,
.event-dates__intro {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
}

.event-menu__card {
  overflow: hidden;
  padding: clamp(1.35rem, 4vw, 2.2rem);
  border-radius: 0 3.9rem 0.9rem 0.9rem;
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.12);
}

.event-menu__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(13, 59, 65, 0.18);
}

.event-menu__header h3,
.event-dates__year h3 {
  margin: 0;
  color: #0d3b41;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.event-menu__price {
  margin: 0.35rem 0 0;
  color: rgba(13, 59, 65, 0.72);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
}

.event-menu__note {
  align-self: start;
  max-width: 16rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(13, 59, 65, 0.16);
  border-radius: 0.9rem;
  color: rgba(13, 59, 65, 0.84);
  background: rgba(239, 231, 220, 0.42);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.2;
}

.event-menu__courses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.event-menu__course {
  display: grid;
  align-content: start;
  gap: 0.4rem;
  min-height: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(13, 59, 65, 0.12);
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.92), rgba(239, 231, 220, 0.54)),
    rgba(255, 250, 244, 0.7);
}

.event-menu__course-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.75rem;
  color: #0d3b41;
  border-radius: 999px;
  background: rgba(126, 163, 171, 0.16);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.event-menu__course h4 {
  margin: 0.1rem 0 0;
  color: #171615;
  font-size: 1.05rem;
  line-height: 1.35;
}

.event-menu__course p {
  margin: 0;
  color: rgba(23, 22, 21, 0.74);
  font-size: 0.92rem;
  line-height: 1.7;
}

.event-menu__choice {
  margin-top: 0.1rem;
  color: #0d3b41;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-menu__choice-divider {
  margin: 0.15rem 0;
  color: rgba(13, 59, 65, 0.6);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1;
}

.event-dates__switcher {
  display: inline-flex;
  width: fit-content;
  gap: 0.5rem;
  padding: 0.4rem;
  border: 1px solid rgba(13, 59, 65, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 0.8rem 2rem rgba(13, 59, 65, 0.08);
}

.event-dates__tab {
  min-width: 6.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.2rem;
  color: rgba(13, 59, 65, 0.72);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.event-dates__tab:hover,
.event-dates__tab:focus-visible {
  color: #0d3b41;
  transform: translateY(-1px);
}

.event-dates__tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, #0d3b41, #14515a);
  box-shadow: 0 1rem 2rem rgba(13, 59, 65, 0.18);
}

.event-dates__panels {
  position: relative;
}

.event-dates__year {
  display: none;
}

.event-dates__year.is-active {
  display: block;
  animation: eventDateReveal 260ms ease both;
}

.event-dates__year {
  padding: clamp(1.35rem, 3vw, 1.8rem);
  border: 1px solid rgba(13, 59, 65, 0.12);
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.92), rgba(239, 231, 220, 0.54)),
    rgba(255, 250, 244, 0.7);
}

.event-dates__year ul {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.event-dates__year li {
  color: #67625b;
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes eventDateReveal {
  from {
    opacity: 0;
    transform: translateY(0.45rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.event-cta-band {
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  padding: clamp(4rem, 7vw, 6rem) 0;
  color: #fff;
  background: #0d3b41;
}

.event-cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.event-cta-band h2 {
  margin: 0;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
}

.event-cta-band p {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

@media (max-width: 68rem) {
  .restaurant-header__inner {
    grid-template-columns: 1fr;
  }

  .restaurant-header__topbar {
    height: 2.35rem;
  }

  .restaurant-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .restaurant-header__contact-block,
  .restaurant-header__reserve {
    justify-items: center;
    justify-self: center;
  }

  .restaurant-header__contact-block {
    grid-template-columns: 1fr;
    row-gap: 0.9rem;
  }

  .restaurant-nav--right {
    justify-content: center;
  }

  .restaurant-header__contacts {
    right: 50%;
    justify-content: center;
    width: min(calc(100% - 2rem), 32rem);
    transform: translateX(50%);
  }

  .nav-dropdown {
    justify-content: center;
  }

  .nav-dropdown__menu {
    left: 50%;
    min-width: min(17rem, calc(100vw - 2rem));
  }

  .event-hero,
  .event-section,
  .event-highlight,
  .event-cta-band__inner {
    grid-template-columns: 1fr;
  }

  .event-hero {
    padding-top: 3rem;
  }

  .event-hero__image {
    min-height: 27rem;
    border-radius: 0 5rem 0 0;
  }

  .event-highlight__gallery {
    min-height: auto;
  }

  .event-highlight__gallery img:first-child {
    height: 26rem;
  }

  .event-highlight__gallery img:last-child {
    height: 18rem;
  }

  .event-dates__switcher {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 42rem) {
  .restaurant-header__topbar {
    height: auto;
    min-height: 3.6rem;
  }

  .restaurant-header__contacts {
    top: 0;
    right: 50%;
    width: min(100% - 1rem, 24rem);
    height: auto;
    margin: 0 auto;
    padding: 0.55rem 0;
    transform: translateX(50%);
  }

  .restaurant-header__contact {
    font-size: 0.76rem;
  }

  .restaurant-nav .nav-dropdown__menu a {
    white-space: normal;
  }

  .event-hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.2rem);
  }

  .event-hero__image {
    min-height: 22rem;
  }

  .event-highlight__gallery {
    grid-template-columns: 1fr;
  }

  .event-highlight__gallery img:first-child,
  .event-highlight__gallery img:last-child {
    height: 18rem;
    margin-bottom: 0;
    border-radius: 0 3.4rem 0 0;
    border-width: 0;
  }

  .event-menu__header {
    flex-direction: column;
  }

  .event-menu__note {
    max-width: none;
  }

}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

@media (max-width: 1100px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  body .restaurant-header__inner {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: min(100% - 2rem, 1140px);
    padding: 1rem 0;
  }

  body .restaurant-header__topbar {
    height: 1rem;
    min-height: 0;
  }

  body .restaurant-header__nav-block,
  body .restaurant-header__contact-block {
    display: none;
  }

  body .restaurant-header__brand {
    justify-self: start;
  }

  body .restaurant-header__brand img {
    width: clamp(9rem, 24vw, 11.5rem);
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 2.9rem;
    padding: 0.75rem 1rem;
    color: #fff;
    border: 1px solid #0d3b41;
    border-radius: 999px;
    background: #0d3b41;
    box-shadow: 0 0.9rem 1.7rem rgba(13, 59, 65, 0.18);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
  }

  .mobile-menu-toggle:focus-visible,
  .mobile-menu__close:focus-visible,
  .mobile-menu__nav a:focus-visible,
  .mobile-menu__actions a:focus-visible {
    outline: 3px solid rgba(126, 163, 170, 0.48);
    outline-offset: 0.25rem;
  }

  .mobile-menu-toggle__bars {
    position: relative;
    width: 1.1rem;
    height: 0.7rem;
    flex: 0 0 auto;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }

  .mobile-menu-toggle__bars::after {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    background: currentColor;
    transform: translateY(-50%);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: block;
    color: #fff;
    background:
      linear-gradient(180deg, rgba(13, 59, 65, 0.96), rgba(10, 42, 46, 0.98)),
      url("./media/ZOZ - juni 2022-7.jpg") center / cover;
    opacity: 0;
    overflow-x: hidden;
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity 220ms ease,
      visibility 220ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-menu__panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: clamp(1rem, 3vw, 1.6rem);
    width: min(100% - 3rem, 40rem);
    min-height: 100vh;
    min-height: 100svh;
    margin: 0 auto;
    padding: max(1rem, env(safe-area-inset-top)) 0 max(1.4rem, env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
  }

  .mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.25rem;
  }

  .mobile-menu__brand img {
    width: clamp(9rem, 24vw, 11.5rem);
    filter: brightness(0) invert(1);
  }

  .mobile-menu__close {
    position: relative;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
  }

  .mobile-menu__close span::before,
  .mobile-menu__close span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.25rem;
    height: 2px;
    content: "";
    background: currentColor;
  }

  .mobile-menu__close span::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .mobile-menu__close span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-menu__nav {
    display: grid;
    align-content: start;
    gap: clamp(0.35rem, 1vw, 0.55rem);
    min-height: 0;
    padding: 0.25rem 0 0.75rem;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .mobile-menu__nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-menu__nav a,
  .mobile-menu__dropdown summary {
    display: flex;
    align-items: center;
    min-height: 2.85rem;
    padding: 0.28rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: inherit;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.85rem, 5vw, 3.15rem);
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-menu__dropdown {
    color: inherit;
    max-width: 100%;
    min-width: 0;
  }

  .mobile-menu__dropdown summary {
    position: relative;
    justify-content: flex-start;
    gap: 1rem;
    padding-right: 2rem;
    list-style: none;
    cursor: pointer;
  }

  .mobile-menu__dropdown summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu__dropdown summary::after {
    position: absolute;
    top: 50%;
    right: 0.35rem;
    width: 0.75rem;
    height: 0.75rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    opacity: 0.8;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 180ms ease;
  }

  .mobile-menu__dropdown[open] summary::after {
    transform: translateY(-35%) rotate(-135deg);
  }

  .mobile-menu__submenu {
    display: grid;
    gap: 0;
    padding: 0.25rem 0 0.55rem 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-menu__submenu a {
    min-height: 2.1rem;
    padding: 0.22rem 0;
    border-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(0.84rem, 2.1vw, 1.02rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .mobile-menu__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
  }

  .mobile-menu__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 2.8rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
    text-align: center;
    text-decoration: none;
  }

  .mobile-menu__reserve,
  .mobile-menu__phone {
    gap: 0.55rem;
  }

  .mobile-menu__reserve svg,
  .mobile-menu__phone svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
  }

  .mobile-menu__actions .mobile-menu__reserve {
    color: #0d3b41;
    border-color: #fff;
    background: #fff;
  }
}

@media (max-width: 720px) {
  body .restaurant-header__inner {
    width: min(100% - 1.5rem, 1140px);
    padding: 0.85rem 0;
  }

  body .restaurant-header__topbar {
    height: 1rem;
    min-height: 0;
  }

  .mobile-menu-toggle {
    min-height: 2.65rem;
    padding: 0.65rem 0.85rem;
  }

  .mobile-menu__panel {
    width: min(100% - 2rem, 40rem);
  }

  .mobile-menu__nav a,
  .mobile-menu__dropdown summary {
    min-height: 2.45rem;
    font-size: clamp(1.7rem, 7.2vw, 2.35rem);
  }

  .mobile-menu__submenu {
    padding-left: 0.75rem;
  }

  .mobile-menu__submenu a {
    min-height: 1.95rem;
    font-size: 0.82rem;
  }

  .mobile-menu__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-menu__actions a {
    width: 100%;
    min-height: 2.45rem;
    padding: 0.55rem 0.85rem;
  }
}

.restaurant-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(9, 36, 40, 0.96), rgba(13, 59, 65, 0.9)),
    url("./media/restaurant-terrace-from-pdf.png") center / cover;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.restaurant-footer::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 36, 40, 0.98), rgba(9, 36, 40, 0.78) 54%, rgba(9, 36, 40, 0.58)),
    linear-gradient(180deg, rgba(9, 36, 40, 0.16), rgba(9, 36, 40, 0.96));
}

.restaurant-footer::after {
  position: absolute;
  right: clamp(1rem, 6vw, 5rem);
  bottom: clamp(5rem, 10vw, 8rem);
  z-index: -1;
  content: "Z";
  color: rgba(255, 255, 255, 0.05);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18rem, 32vw, 34rem);
  font-weight: 700;
  line-height: 0.7;
}

.restaurant-footer__inner {
  display: grid;
  grid-template-columns: 1.12fr 0.86fr 0.86fr 0.9fr 0.78fr;
  gap: clamp(1.4rem, 3.4vw, 3.4rem);
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5.2rem);
}

.restaurant-footer__column {
  display: flex;
  align-content: start;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.restaurant-footer__column h3 {
  margin: 0 0 0.9rem;
  color: #d5e4e7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.restaurant-footer__column p,
.restaurant-footer__column a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.85;
}

.restaurant-footer__column a {
  width: max-content;
  max-width: 100%;
  text-decoration: none;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.restaurant-footer__column a:hover,
.restaurant-footer__column a:focus-visible {
  color: #fff;
  transform: translateX(0.18rem);
}

.restaurant-footer__pavilion {
  margin-top: -1.2rem;
  padding: 1.2rem;
  border: 1px solid #fff;
  border-radius: 0 0 3.6rem 0;
  background: #fff;
  clip-path: inset(0 round 0 0 3.6rem 0);
}

.restaurant-footer__pavilion h3 {
  color: #0d3b41;
}

.restaurant-footer__pavilion a {
  position: relative;
  color: rgba(13, 59, 65, 0.76);
  padding-left: 1rem;
}

.restaurant-footer__pavilion a::before {
  position: absolute;
  top: 0.92em;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  content: "";
  background: #0d3b41;
}

.restaurant-footer__pavilion a:hover,
.restaurant-footer__pavilion a:focus-visible {
  color: #0d3b41;
}

.restaurant-footer__column a:focus-visible,
.restaurant-footer__bottom a:focus-visible,
.restaurant-footer__socials a:focus-visible {
  outline: 3px solid rgba(143, 177, 184, 0.58);
  outline-offset: 4px;
}

.restaurant-footer__contact {
  gap: 0.8rem;
  margin-top: -1rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.restaurant-footer__logo {
  display: inline-flex;
  width: 6rem;
  margin-bottom: 0.45rem;
}

.restaurant-footer__logo img,
.restaurant-footer__brand-row img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.restaurant-footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.restaurant-footer__contact-link svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: #8fb1b8;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.restaurant-footer__contact-link:hover svg,
.restaurant-footer__contact-link:focus-visible svg {
  color: #fff;
  transform: scale(1.06);
}

.restaurant-footer__brand-row {
  display: grid;
  place-items: center;
  padding: 2rem 0 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.restaurant-footer__brand-row a {
  display: inline-flex;
  width: clamp(7rem, 11vw, 9rem);
}

.restaurant-footer__brand-row img {
  opacity: 0.88;
}

.restaurant-footer__bottom {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: 0 0 3.4rem;
  text-align: center;
}

.restaurant-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  line-height: 1.7;
}

.restaurant-footer__bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.restaurant-footer__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.restaurant-footer__socials a {
  display: inline-grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.restaurant-footer__socials a:hover,
.restaurant-footer__socials a:focus-visible {
  color: #0d3b41;
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.restaurant-footer__socials svg {
  width: 1rem;
  height: 1rem;
}

.restaurant-footer__tripadvisor-icon {
  width: 1.25rem;
  height: auto;
}

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

@media (max-width: 720px) {
  .restaurant-footer__inner {
    grid-template-columns: 1fr;
  }

  .restaurant-footer__contact {
    margin-top: 0;
  }

  .restaurant-footer__bottom {
    justify-items: center;
  }
}

/* Keeps all page subtitles visually consistent after page-specific overrides. */
:where(.section-kicker, .eyebrow, .location-kicker, .region-kicker, .jobs-kicker, .event-hero__label, .event-section__label) {
  margin: 0 0 0.85rem !important;
  color: #7ea3ab !important;
  font-family: "Manrope", Arial, sans-serif !important;
  font-size: 0.76rem !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: 0.13em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}
