.menu-photo-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0;
      border: 0;
      background: none;
      color: inherit;
      font: inherit;
      font-weight: inherit;
      text-align: left;
      cursor: pointer;
    }

    .menu-photo-link:hover,
    .menu-photo-link:focus-visible {
      color: #b4512a;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .photo-icon {
      display: inline-grid;
      place-items: center;
      width: 1.65rem;
      height: 1.65rem;
      border-radius: 999px;
      background: #f3e5d8;
      font-size: 0.9rem;
      line-height: 1;
      flex: 0 0 auto;
    }

    .photo-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: rgba(0, 0, 0, 0.78);
    }

    .photo-modal.is-open {
      display: flex;
    }

    .photo-modal-content {
      position: relative;
      width: min(92vw, 760px);
      max-height: 90vh;
      overflow: hidden;
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    }

    .photo-modal-image {
      display: block;
      width: 100%;
      max-height: 72vh;
      object-fit: contain;
      background: #eee;
    }

    .photo-modal-caption {
      margin: 0;
      padding: 1rem 1.25rem 1.15rem;
      font-size: 1.1rem;
      font-weight: 700;
      text-align: center;
    }

    .photo-modal-close {
      position: absolute;
      top: 0.7rem;
      right: 0.7rem;
      z-index: 1;
      width: 2.5rem;
      height: 2.5rem;
      border: 0;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.72);
      color: white;
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
    }

    .photo-modal-close:hover,
    .photo-modal-close:focus-visible {
      background: #000;
    }

    body.modal-open {
      overflow: hidden;
    }