:root {
  --black: #050505;
  --soft-black: #0b0b0b;
  --gold: #c6b522;
  --warm-gold: #d18819;
  --white: #ffffff;
  --gray: #ababab;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; }

.hero {
  min-height: min(78vh, 820px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(34px, 5vw, 72px);
  text-align: left;
  position: relative;
  overflow: hidden;
  background: #050505;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-glow {
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .06) 42%, rgba(0, 0, 0, .88)),
    linear-gradient(90deg, rgba(0, 0, 0, .46), transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  width: auto;
  max-width: min(560px, 100%);
  text-align: left;
}

.brand-logo {
  width: clamp(132px, 14vw, 188px);
  height: auto;
  display: block;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 26px rgba(209, 136, 25, .16));
}

.eyebrow,
.section-heading p,
.footer-kicker {
  margin: 0 0 16px;
  color: var(--warm-gold);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .24em;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0 22px;
  background: rgba(5, 5, 5, .94);
  border-bottom: 1px solid rgba(197, 160, 89, .24);
  backdrop-filter: blur(16px);
}

.section-nav {
  width: min(1380px, 100%);
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.section-nav a,
.nav-dropdown summary {
  color: #dedede;
  font-size: clamp(.68rem, .72vw, .79rem);
  font-weight: 500;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease;
}

.section-nav > .nav-links > a:hover,
.section-nav > .nav-links > a:focus-visible,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible {
  color: #c5a059;
}

.nav-dropdown { position: relative; }

.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
}

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

.nav-dropdown summary > span {
  color: #c5a059;
  font-size: .86rem;
  transition: transform .2s ease;
}

.nav-dropdown[open] summary > span { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  width: min(360px, calc(100vw - 32px));
  padding: 9px;
  background: rgba(9, 9, 9, .98);
  border: 1px solid rgba(197, 160, 89, .3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  inset: -19px 0 auto;
  height: 19px;
}

.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  color: #f1f1f1;
  font-size: .74rem;
  line-height: 1.4;
  white-space: normal;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: #050505;
  background: #c5a059;
  outline: none;
}

.nav-dropdown__menu--compact { width: 210px; }

.reserve-button {
  flex: 0 0 auto;
  padding: 13px 18px;
  color: #050505 !important;
  background: #c5a059;
  border: 1px solid #c5a059;
  font-weight: 600 !important;
  letter-spacing: .12em !important;
  transition: background .2s ease, color .2s ease, transform .2s ease !important;
}

.reserve-button:hover,
.reserve-button:focus-visible {
  color: #fff !important;
  background: transparent;
  transform: translateY(-1px);
  outline: none;
}

.nav-toggle { display: none; }

@media (hover: hover) and (min-width: 981px) {
  .nav-dropdown:not([open]):hover .nav-dropdown__menu { display: block; }
  .nav-dropdown:not([open]) .nav-dropdown__menu { display: none; }
}

.agenda-section {
  padding-top: 74px;
  overflow: hidden;
  scroll-margin-top: 54px;
}

.agenda-heading,
.past-events {
  width: min(1120px, calc(100% - 56px));
  margin-inline: auto;
}

.agenda-heading,
.past-events__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.agenda-heading p,
.past-events__heading p {
  margin: 0 0 9px;
  color: var(--warm-gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
}

.agenda-heading h2,
.past-events__heading h3 {
  margin: 0;
  font-size: clamp(2.15rem, 5.8vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.045em;
}

.promo-row {
  position: relative;
  width: min(1120px, calc(100% - 56px));
  margin: 30px auto 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(198, 181, 34, .32);
  background: #090909;
}

.promo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}

.promo-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promo-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  padding: 0 0 4px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, .62);
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.promo-control--prev { left: 20px; }
.promo-control--next { right: 20px; }

.promo-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 4;
  display: flex;
  gap: 0;
  transform: translateX(-50%);
}

.promo-dots button {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.promo-dots button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: rgba(0, 0, 0, .42);
  transform: translate(-50%, -50%);
}

.promo-dots button.is-active::after { background: #fff; }

.dinner-promo {
  display: grid;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 181, 34, .12), transparent 38%),
    #080808;
}

.dinner-promo__media {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  background: #050505;
}

.dinner-promo__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.dinner-promo__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 4.2vw, 62px);
}

.dinner-promo__date {
  margin: 0 0 16px;
  color: var(--warm-gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.dinner-promo__copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.045em;
}

.dinner-promo__lead {
  margin: 20px 0 0;
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.55;
}

.dinner-promo__menu {
  margin-top: 18px;
  color: #bdbdbd;
  font-size: .86rem;
  line-height: 1.5;
}

.dinner-promo__menu p { margin: 0 0 8px; }
.dinner-promo__menu strong { color: #fff; font-weight: 600; }

.dinner-promo__price {
  margin: 12px 0 0;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 500;
}

.dinner-promo__price span {
  color: #a9a9a9;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dinner-promo__copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 18px;
  color: #080808;
  background: var(--gold);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.monthly-promo {
  display: grid;
  grid-template-columns: 46% 54%;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 181, 34, .12), transparent 34%),
    #090909;
}

.monthly-promo__image { min-height: 0; overflow: hidden; }

.monthly-promo__carousel {
  position: relative;
  height: 100%;
  background: #050505;
}

.monthly-promo__slides {
  position: absolute;
  inset: 0;
}

.monthly-promo__slide {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}

.monthly-promo__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.monthly-promo__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.monthly-promo__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 6vw, 76px);
}

.monthly-promo__copy > p {
  margin: 0 0 18px;
  color: var(--warm-gold);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .2em;
}

.monthly-promo__copy h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.05em;
}

.monthly-promo__copy > span {
  margin-top: 24px;
  color: #cfcfcf;
  font-size: 1rem;
}

.monthly-promo__copy a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding: 14px 22px;
  color: #080808;
  background: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.negroni-promo {
  display: grid;
  grid-template-columns: 58% 42%;
  overflow: hidden;
  background: #090909;
}

.negroni-promo__carousel {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #efefeb;
}

.negroni-promo__slides {
  position: absolute;
  inset: 0;
}

.negroni-promo__slide {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}

.negroni-promo__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.negroni-promo__slide img { object-position: center 62%; }

.negroni-promo__slide--flyer img {
  object-fit: contain;
  object-position: center;
  background: #efefeb;
}

.negroni-promo__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 68px);
}

.negroni-promo__copy p {
  margin: 0 0 16px;
  color: var(--warm-gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.negroni-promo__copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.25rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.campari-promo {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.campari-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .08) 0%, rgba(0, 0, 0, .28) 44%, rgba(0, 0, 0, .94) 75%);
  pointer-events: none;
}

.campari-promo__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.campari-promo__copy {
  position: absolute;
  top: 50%;
  right: clamp(42px, 6vw, 76px);
  z-index: 2;
  width: min(40%, 420px);
  transform: translateY(-50%);
}

.campari-promo__copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.055em;
}

.campari-promo__copy .campari-promo__date {
  margin: 24px 0 0;
  color: var(--warm-gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
}

.campari-promo__copy .campari-promo__lead {
  margin: 28px 0 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.campari-promo__copy .campari-promo__details {
  margin: 10px 0 0;
  color: #e2e2e2;
  line-height: 1.5;
}

.campari-promo__copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 20px;
  color: #070707;
  background: var(--gold);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.campari-promo--art {
  display: grid;
  place-items: center;
  isolation: isolate;
}

.campari-promo--art::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -2;
  background: url('./assets/campari-ochyb-26.webp') center / cover no-repeat;
  filter: blur(18px);
  transform: scale(1.04);
  opacity: .5;
}

.campari-promo--art::after {
  z-index: -1;
  background: rgba(0, 0, 0, .52);
}

.campari-promo__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.campari-promo--art .campari-promo__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.milanesa-promo {
  display: grid;
  grid-template-columns: 52% 48%;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 16%, rgba(198, 181, 34, .11), transparent 34%),
    #050505;
}

.milanesa-promo__media {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #090909;
}

.milanesa-promo__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.milanesa-promo__copy {
  align-self: center;
  padding: clamp(34px, 5vw, 72px);
}

.milanesa-promo__copy h2 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 4.2vw, 4.35rem);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.05em;
}

.milanesa-promo__date {
  margin: 0 0 18px;
  color: var(--warm-gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.milanesa-promo__lead {
  margin: 28px 0 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .08em;
}

.milanesa-promo__details {
  margin: 10px 0 0;
  color: #e2e2e2;
  font-size: 1rem;
  line-height: 1.55;
}

.milanesa-promo__copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 20px;
  color: #070707;
  background: var(--gold);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.past-events {
  margin-top: 70px;
  padding-top: 34px;
  border-top: 1px solid rgba(198, 181, 34, .22);
}

.past-events__heading h3 {
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.past-events__track { margin-top: 28px; }

.past-event-card {
  display: grid;
  grid-template-columns: 60% 40%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(198, 181, 34, .34);
  background:
    radial-gradient(circle at 100% 0%, rgba(235, 100, 22, .13), transparent 35%),
    #090909;
}

.past-event-carousel {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.past-event-slides {
  position: absolute;
  inset: 0;
}

.past-event-slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
  aspect-ratio: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease;
}

.past-event-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.past-event-slide--flyer img {
  object-fit: contain;
  background: #000;
}

.past-event-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0 0 4px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, .58);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.past-event-control--prev { left: 18px; }
.past-event-control--next { right: 18px; }

.past-event-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 0;
  transform: translateX(-50%);
}

.past-event-dots button {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.past-event-dots button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  transform: translate(-50%, -50%);
}

.past-event-dots button.is-active::after { background: #fff; }

.menu-group { scroll-margin-top: 54px; }

.past-event-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 54px);
}

.past-event-copy time {
  color: var(--warm-gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
}

.past-event-copy h3 {
  margin: 16px 0 0;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.055em;
}

.past-event-copy > p {
  margin: 20px 0 0;
  color: #cfcfcf;
  line-height: 1.65;
}

.past-event-copy .past-event-lead {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
}

.past-event-copy .past-event-summary {
  max-width: 34ch;
  font-size: .9rem;
}

.past-event-details {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  list-style: none;
  color: #e7e7e7;
  font-size: .9rem;
  line-height: 1.45;
}

.press-section {
  display: grid;
  gap: 18px;
  width: min(1040px, calc(100% - 56px));
  margin: 82px auto 0;
  scroll-margin-top: 82px;
}

.news-heading {
  margin-bottom: 28px;
}

.award-feature {
  overflow: hidden;
  border: 1px solid rgba(198, 181, 34, .5);
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 181, 34, .14), transparent 35%),
    linear-gradient(145deg, #111 0%, #050505 76%);
}

.award-feature-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  height: clamp(430px, 58vw, 700px);
  padding: 3px;
  background: #050505;
}

.award-feature-media .image-button {
  min-height: 0;
  aspect-ratio: auto;
}

.award-feature-media img {
  object-position: center;
}

.award-feature-copy {
  padding: clamp(34px, 6vw, 68px);
}

.award-feature-copy h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.15rem, 5.2vw, 4.7rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.045em;
}

.award-feature-copy > p:last-child {
  max-width: 720px;
  margin: 28px 0 0;
  color: #d8d8d8;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.press-feature {
  overflow: hidden;
  border: 1px solid rgba(198, 181, 34, .42);
  background:
    radial-gradient(circle at 100% 100%, rgba(148, 25, 34, .2), transparent 38%),
    linear-gradient(145deg, #111 0%, #050505 74%);
}

.press-feature-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(270px, 34vw) minmax(210px, 25vw);
  gap: 3px;
  max-height: 710px;
  padding: 3px;
  background: #050505;
}

.press-feature-media .press-feature-image {
  min-height: 0;
  aspect-ratio: auto;
}

.press-feature-image img { object-position: center; }

.press-feature-poster {
  background: #a91c2d;
}

.press-feature-media .press-feature-poster img {
  object-fit: contain;
}

.press-feature-media .press-feature-poster:hover img,
.press-feature-media .press-feature-poster:focus-visible img {
  transform: none;
}

.press-feature-drink {
  grid-column: 1 / -1;
}

.press-feature-drink img { object-position: center 58%; }

.press-feature-copy {
  padding: clamp(34px, 6vw, 68px);
}

.press-feature-kicker {
  margin: 0 0 20px;
  color: var(--warm-gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
}

.press-feature-copy h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.25rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.04em;
}

.press-feature-lead {
  max-width: 760px;
  margin: 28px 0 34px;
  color: #d8d8d8;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.cocktail-recipe {
  max-width: 820px;
  margin: 0 0 36px;
  padding: 25px 28px;
  border-left: 2px solid var(--warm-gold);
  background: rgba(255, 255, 255, .035);
}

.cocktail-recipe > p:first-child {
  margin: 0 0 9px;
  color: #a8a8a8;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
}

.cocktail-recipe h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 400;
}

.cocktail-recipe h3 span {
  color: var(--warm-gold);
  font-size: .72em;
  font-weight: 500;
}

.cocktail-recipe > p:last-child {
  margin: 0;
  color: #cfcfcf;
  line-height: 1.75;
}

.press-card {
  position: relative;
  padding: clamp(30px, 6vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(198, 181, 34, .28);
  background:
    radial-gradient(circle at 92% 0%, rgba(209, 136, 25, .14), transparent 32%),
    linear-gradient(135deg, #111 0%, #080808 72%);
}

.press-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 86px;
  height: 2px;
  background: var(--warm-gold);
}

.press-source {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  color: #c7c7c7;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.press-card h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(1.8rem, 4.5vw, 3.55rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.press-card > p {
  max-width: 720px;
  margin: 26px 0 34px;
  color: #cfcfcf;
  font-size: 1rem;
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  color: #f0d06b;
  border-bottom: 1px solid rgba(240, 208, 107, .58);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.press-link:hover,
.press-link:focus-visible { color: #fff0b5; }

.press-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }

.gallery-section {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 112px 28px 28px;
  scroll-margin-top: 54px;
}

.section-heading {
  margin-bottom: 46px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -.035em;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 22px;
}

.dish-card { margin: 0; }

.gallery--visual .dish-card,
.gallery--social .dish-card { overflow: hidden; }

.cocktail-collage {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 4 / 5;
}

.cocktail-collage .image-button {
  min-height: 0;
  aspect-ratio: auto;
}

.cocktail-feature figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
}

.cocktail-feature figcaption span {
  color: var(--warm-gold);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cocktail-card-details figcaption {
  display: grid;
  gap: 9px;
}

.cocktail-card-details figcaption strong {
  font-size: 1rem;
  font-weight: 500;
}

.cocktail-card-details figcaption span {
  color: #a9a9a9;
  font-size: .78rem;
  line-height: 1.55;
  letter-spacing: .025em;
}

.gallery--social .social-wide { grid-column: span 2; }

.gallery--social .social-wide .image-button { aspect-ratio: 8 / 5; }

.image-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: zoom-in;
  aspect-ratio: 4 / 5;
}

.image-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

/* Las piezas editoriales se muestran completas dentro del formato del carrusel. */
.image-button.event-media-slide {
  isolation: isolate;
  height: 100%;
  background: #080808;
}

.image-button.event-media-slide::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -22px;
  background-image: linear-gradient(rgba(0, 0, 0, .46), rgba(0, 0, 0, .46)), var(--slide-image);
  background-position: center;
  background-size: cover;
  filter: blur(18px) saturate(.9);
  transform: scale(1.08);
}

.image-button.event-media-slide img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
}

.image-button.event-media-slide--flyer::before { display: none; }

.image-button.event-media-slide--flyer img {
  object-fit: contain;
  object-position: center;
  background: #efefeb;
}

.past-event-carousel .image-button.event-media-slide--flyer img { background: #050505; }

.image-button.event-media-slide:hover img,
.image-button.event-media-slide:focus-visible img {
  transform: none;
  filter: none;
}

.image-button:hover img,
.image-button:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.06);
}

.image-button:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

figcaption {
  padding-top: 17px;
  color: #efefef;
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .035em;
}

.reviews-section {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 112px 28px 0;
  scroll-margin-top: 54px;
}

.reviews-widget {
  min-height: 340px;
  overflow: hidden;
  border-top: 1px solid rgba(198, 181, 34, .2);
  border-bottom: 1px solid rgba(198, 181, 34, .2);
  background: #050505;
}

.reviews-fallback {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 42px 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(198, 181, 34, .1), transparent 42%),
    #070707;
}

.reviews-fallback p {
  margin: 0;
  color: #d5d5d5;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.reviews-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: #080808;
  background: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

footer {
  margin-top: 110px;
  padding: 96px 24px 34px;
  text-align: center;
  border-top: 1px solid rgba(198, 181, 34, .18);
  background: linear-gradient(180deg, #080808, #020202);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .42);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .52);
}

.whatsapp-float:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.whatsapp-float svg { width: 32px; height: 32px; fill: currentColor; }

.footer-logo { width: 124px; height: auto; margin-bottom: 36px; }
.footer-kicker { margin-bottom: 24px; }

.social-links,
.action-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.social-links a,
.action-links a {
  min-width: 138px;
  padding: 14px 20px;
  border: 1px solid rgba(198, 181, 34, .42);
  color: #f2f2f2;
  font-size: .8rem;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.social-links a:hover,
.action-links a:hover {
  color: #090909;
  border-color: var(--gold);
  background: var(--gold);
}

.action-links { margin-top: 14px; }

.social-links--single .linktree-link {
  width: min(420px, 100%);
  padding-block: 17px;
  color: #090909;
  border-color: var(--gold);
  background: var(--gold);
  font-weight: 600;
}

.social-links--single .linktree-link:hover,
.social-links--single .linktree-link:focus-visible {
  color: var(--white);
  background: transparent;
}

address {
  margin-top: 42px;
  color: #d8d8d8;
  font-size: .9rem;
  font-style: normal;
}

.hours { margin: 7px 0 0; color: var(--gray); font-size: .82rem; }
.copyright { margin: 64px 0 0; color: #666; font-size: .7rem; letter-spacing: .08em; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 38px;
  border: 0;
  background: rgba(0, 0, 0, .94);
}

.lightbox::backdrop { background: rgba(0, 0, 0, .92); }

.lightbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 2;
  padding: 5px 10px;
  border: 0;
  color: white;
  background: transparent;
  font-size: 2.1rem;
  font-weight: 300;
  cursor: pointer;
}

@media (max-width: 820px) {
  .promo-row {
    height: clamp(560px, 85vw, 650px);
    aspect-ratio: auto;
  }
  .dinner-promo,
  .monthly-promo,
  .negroni-promo,
  .milanesa-promo {
    grid-template-columns: 1fr;
  }
  .dinner-promo { grid-template-rows: 62% 38%; }
  .dinner-promo__copy { padding: 28px 64px 42px 30px; }
  .monthly-promo { grid-template-rows: 50% 50%; }
  .monthly-promo__copy { padding: 30px 64px 46px 30px; }
  .negroni-promo { grid-template-rows: 62% 38%; }
  .negroni-promo__copy { padding: 28px 64px 44px 30px; }
  .milanesa-promo { grid-template-rows: 60% 40%; }
  .milanesa-promo__copy { padding: 26px 64px 44px 30px; }
  .past-event-copy { padding: 32px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .nav-bar { padding: 0; }

  .nav-toggle {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #f3f3f3;
    background: transparent;
    border: 0;
    font: inherit;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .16em;
    cursor: pointer;
  }

  .nav-toggle__icon,
  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    width: 22px;
    height: 1px;
    display: block;
    position: relative;
    background: #c5a059;
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle__icon::before { top: -7px; }
  .nav-toggle__icon::after { top: 7px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__icon::after { top: 0; transform: rotate(-45deg); }

  .section-nav {
    width: 100%;
    min-height: 0;
    max-height: 0;
    padding: 0 20px;
    display: block;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, padding .35s ease, opacity .2s ease;
  }

  .nav-bar.is-open .section-nav {
    max-height: calc(100svh - 58px);
    padding-block: 4px 22px;
    overflow-y: auto;
    opacity: 1;
  }

  .nav-links { display: block; }

  .nav-links > a,
  .nav-dropdown summary {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: .78rem;
  }

  .nav-dropdown__menu,
  .nav-dropdown__menu--compact {
    width: 100%;
    position: static;
    padding: 4px 0 8px 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-dropdown__menu::before { display: none; }

  .nav-dropdown__menu a {
    min-height: 44px;
    padding: 10px 12px;
    color: #cfcfcf;
    font-size: .73rem;
  }

  .reserve-button {
    width: 100%;
    margin-top: 18px;
    display: block;
    padding: 14px 18px !important;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 62svh;
    padding: 22px 18px;
  }

  .hero-image { object-position: 54% center; }

  .hero-content {
    align-self: flex-start;
    width: 154px;
    max-width: 42vw;
    padding: 12px 12px 15px;
    background: rgba(0, 0, 0, .72);
    border-left: 1px solid rgba(198, 181, 34, .5);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
    backdrop-filter: blur(4px);
  }

  .brand-logo {
    width: 88px;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .eyebrow {
    max-width: 118px;
    margin: 0;
    font-size: .61rem;
    line-height: 1.55;
    letter-spacing: .13em;
  }
  .agenda-section { padding-top: 48px; }
  .agenda-heading,
  .past-events {
    width: calc(100% - 34px);
  }
  .agenda-heading,
  .past-events__heading {
    display: block;
  }
  .agenda-heading p,
  .past-events__heading p { margin-bottom: 12px; }
  .promo-row {
    display: block;
    width: calc(100% - 34px);
    margin-top: 26px;
    padding: 0;
    overflow: hidden;
    height: clamp(600px, 168vw, 680px);
    min-height: 600px;
    aspect-ratio: auto;
  }
  .promo-control { width: 40px; height: 40px; font-size: 1.8rem; }
  .promo-control--prev { left: 10px; }
  .promo-control--next { right: 10px; }
  .promo-dots { bottom: 13px; }
  .dinner-promo {
    grid-template-columns: 1fr;
    grid-template-rows: 74% 26%;
  }
  .dinner-promo__copy {
    align-items: center;
    justify-content: center;
    padding: 14px 52px 38px 20px;
    text-align: center;
  }
  .dinner-promo__date,
  .dinner-promo__copy h2,
  .dinner-promo__lead,
  .dinner-promo__menu { display: none; }
  .dinner-promo__price { margin-top: 0; font-size: 1.25rem; }
  .dinner-promo__price span { font-size: .58rem; }
  .dinner-promo__copy a { margin-top: 10px; padding: 10px 15px; font-size: .68rem; }
  .monthly-promo {
    grid-template-columns: 1fr;
    grid-template-rows: 43% 57%;
    width: 100%;
    margin-top: 0;
  }
  .monthly-promo__image { height: auto; min-height: 0; max-height: none; }
  .monthly-promo__image img { object-position: center 56%; }
  .monthly-promo__copy { padding: 24px 58px 48px 24px; }
  .monthly-promo__copy > p { margin-bottom: 14px; font-size: .68rem; }
  .monthly-promo__copy h1 { font-size: clamp(2rem, 9.5vw, 2.75rem); line-height: 1.02; }
  .monthly-promo__copy > span { margin-top: 12px; font-size: .9rem; }
  .monthly-promo__copy a { margin-top: 18px; padding: 11px 18px; }
  .negroni-promo {
    grid-template-columns: 1fr;
    grid-template-rows: 58% 42%;
  }
  .negroni-promo__copy { padding: 22px 58px 48px 24px; }
  .negroni-promo__copy p { margin-bottom: 10px; font-size: .66rem; }
  .negroni-promo__copy h2 { font-size: 1.72rem; line-height: 1.08; }
  .campari-promo::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .03) 10%, rgba(0, 0, 0, .18) 42%, rgba(0, 0, 0, .94) 72%);
  }
  .campari-promo__image { object-position: 42% center; }
  .campari-promo__copy {
    top: auto;
    right: 52px;
    bottom: 34px;
    left: 24px;
    width: auto;
    transform: none;
  }
  .campari-promo__copy h2 { font-size: 2.05rem; }
  .campari-promo__copy .campari-promo__date { margin-top: 13px; font-size: .68rem; }
  .campari-promo__copy .campari-promo__lead { margin-top: 14px; font-size: .95rem; }
  .campari-promo__copy .campari-promo__details { margin-top: 6px; font-size: .85rem; }
  .campari-promo__copy a { margin-top: 16px; padding: 11px 16px; }
  .milanesa-promo {
    grid-template-columns: 1fr;
    grid-template-rows: 58% 42%;
  }
  .milanesa-promo__copy {
    align-self: stretch;
    padding: 20px 58px 48px 24px;
  }
  .milanesa-promo__copy h2 { font-size: clamp(1.8rem, 8vw, 2.35rem); }
  .milanesa-promo__date { margin-bottom: 9px; font-size: .64rem; }
  .milanesa-promo__lead { margin-top: 12px; font-size: .88rem; }
  .milanesa-promo__details { margin-top: 5px; font-size: .84rem; line-height: 1.4; }
  .milanesa-promo__copy a { margin-top: 13px; padding: 10px 15px; }
  .past-events { margin-top: 54px; padding-top: 28px; }
  .past-events__track {
    width: 100%;
  }
  .past-event-card {
    grid-template-columns: 1fr;
    grid-template-rows: 57% 43%;
    aspect-ratio: 4 / 5;
  }
  .past-event-carousel {
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
  }
  .past-event-copy { padding: 20px 24px 26px; }
  .past-event-copy time { font-size: .61rem; }
  .past-event-copy h3 { margin-top: 8px; font-size: 2.75rem; }
  .past-event-copy .past-event-lead { margin-top: 8px; font-size: 1rem; }
  .past-event-copy .past-event-summary { margin-top: 7px; font-size: .76rem; line-height: 1.45; }
  .press-section { width: calc(100% - 34px); margin-top: 60px; }
  .news-heading { margin-bottom: 24px; }
  .award-feature-media {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78vw;
    height: auto;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .award-feature-media::-webkit-scrollbar { display: none; }
  .award-feature-media .image-button {
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
  }
  .award-feature-copy { padding: 32px 23px 38px; }
  .award-feature-copy h2 { font-size: 2.2rem; }
  .award-feature-copy > p:last-child { margin-top: 20px; line-height: 1.6; }
  .press-feature-media {
    grid-template-columns: none;
    grid-template-rows: 1fr;
    grid-auto-flow: column;
    grid-auto-columns: 78vw;
    height: 104vw;
    max-height: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .press-feature-media::-webkit-scrollbar { display: none; }
  .press-feature-media .press-feature-image {
    aspect-ratio: 3 / 4;
    scroll-snap-align: start;
  }
  .press-feature-drink { grid-column: auto; }
  .press-feature-copy { padding: 32px 23px 38px; }
  .press-feature-kicker { margin-bottom: 16px; font-size: .68rem; }
  .press-feature-copy h2 { font-size: 1.95rem; line-height: 1.08; }
  .press-feature-lead { margin: 22px 0 26px; line-height: 1.62; }
  .cocktail-recipe { padding: 20px 18px; }
  .press-source { flex-direction: column; gap: 7px; margin-bottom: 24px; }
  .press-card > p { margin: 22px 0 30px; }
  .gallery-section { padding: 70px 0 8px; }
  .section-heading { margin-bottom: 26px; padding-inline: 17px; }
  .section-heading::after {
    content: "Deslizá para ver más  →";
    display: block;
    margin-top: 14px;
    color: #9c8f2a;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .09em;
    text-transform: uppercase;
  }
  .gallery {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78vw;
    gap: 14px;
    padding: 0 17px 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery .dish-card { scroll-snap-align: start; }
  .gallery--social .social-wide { grid-column: auto; }
  .gallery--social .social-wide .image-button { aspect-ratio: 4 / 5; }
  figcaption { padding-top: 14px; font-size: .92rem; }
  .reviews-section { padding: 78px 17px 0; }
  footer { margin-top: 86px; padding: 76px 18px 28px; }
  .whatsapp-float {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }
  .whatsapp-float svg { width: 30px; height: 30px; }
  .social-links,
  .action-links { flex-direction: column; }
  .social-links a,
  .action-links a { width: 100%; }
  .lightbox { padding: 42px 10px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .image-button img { transition: none; }
}
